Step 1: Update the SystemΒΆ

It is recommended to update the system prior to installation. Run the script 01_update.sh to do it. Contents of this script are shown below.

#!/bin/bash
if [[ $EUID -ne 0 ]]; then
   echo "This script must be run as root" 1>&2
   exit 1
fi
apt-get update && apt-get -y upgrade && reboot

Press Next to continue to Step 2.