root@myserver:/ssh/setup#

Step 5: First Boot and SSH Access

After the installation and reboot, you should see a screen like this on your monitor:

Ubuntu 24.04.2 LTS homeserver tty1
homeserver login:

Enter the username you created earlier — most likely user — and press Enter. Then enter the password you set.

If everything is correct, you’ll see a prompt like this:

user@homeserver:~$

This means your system is ready. Let’s now update it and check if SSH is running.

Update the software package list:

user@homeserver:~$ sudo apt update

This command doesn’t install anything yet. It only makes sure your server knows which versions of software are available.

Upgrade installed packages to the latest versions:

user@homeserver:~$ sudo apt upgrade

This command actually installs the newest versions of all installed software (if updates are available).

Check that SSH is running:

user@homeserver:~$ sudo systemctl status ssh

If SSH is working, you should see a line like:

Active: active (running)

Find your local IP address:

user@homeserver:~$ hostname -I

This will show an IP address like 192.168.0.105. Write it down — this is how you’ll connect to your server from other devices on the same network.

Access the server from another device (on the same network):

Windows:

macOS / Linux:

iPhone (iOS):

Android:

✅ Now you can control your server from any other device in your local network using SSH!

Next, we will install some useful software starting with a media server.