Step 1: Prepare the Operating System
It is recommended to update the operating system to the most recent state prior to installation. Navigate to core
sub folder and run the 01_update.sh
script.
#!/bin/bash
# update should be done as root
if [[ $EUID -ne 0 ]]; then
echo "This script must be run as root" 1>&2
exit 1
fi
# add universe repo
add-apt-repository -y universe
# update and upgrade
apt update && apt -y upgrade
# and now reboot
reboot
Press Next to continue to Step 2.