Step 1: Update the SystemΒΆ

It is recommended to update the system prior to installation. Navigate to core.debian11 sub folder and run the script 01_update.sh to do it.

#!/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

# update, upgrade and reboot
apt-get update && apt-get -y upgrade && reboot

Press Next to continue to Step 2.