Installing Ubuntu Server

Step 2 of the series: Bypass internet restrictions and protect your privacy on public Wi-Fi

In this part of the series, you’ll learn how to install Ubuntu Server step by step.

Preparing the Ubuntu Server installation

With the login credentials you received, log into the netcup Server Control Panel.

Select your server, then click on Settings on the left. Here you can set the keyboard layout and adjust the UEFI settings. I selected “en” for the keyboard and enabled UEFI boot. You can leave the other settings as they are.

netcup Server Control Panel Settings
You can configure the boot order, keyboard layout, operating system optimization, and UEFI settings in the configuration menu.

Next, go to Media > Official DVDs and select Ubuntu 24.04 Live Server or a newer version.

Then mount the DVD as shown.

Selection of the installation image to be started in the netcup Server Control Panel.
Choose Media > DVD Drive > Ubuntu 24.04 Live Server

Once the DVD is mounted, you need to restart the server.

First, open the server screen using the VNC Console. On the left, select >_ Screen. A new window will appear showing the login screen of the OS currently installed on the server. In my case, it’s Debian GNU/Linux 12.

Screenshot VNC Console Debian GNU/Linux 12
By default, a Debian GNU/Linux distribution is installed on the server.

Move the window aside and in the Server Control Panel go to Control > Powercycle. The server will now reboot, and shortly after, the Ubuntu DVD start screen should appear in the VNC Console.

Screenshot VNC Console Try or Install Ubuntu Server
After the server restarts, the screen for installing Ubuntu Server is displayed.

Select Try or Install Ubuntu Server.

Performing the Ubuntu Server installation – step by step

The headings and options remain in the selected default language, English.

  1. Willkommen! Bienvenue! Welcome
    • Keep the language as English.
  2. Installer update available
    • Do not download the latest installer. Select Continue without updating.
  3. Keyboard configuration
    • Choose Identify Keyboard and follow the instructions to detect your keyboard layout.
  4. Choose the type of installation.
    • Keep the default selection Ubuntu Server.
  5. Network configuration
    • Use the default settings; the IP address will be assigned via DHCP.
  6. Proxy configuration
    • Leave this field empty.
  7. Ubuntu archive mirror configuration
    • Accept the suggested mirror.
  8. Guided storage configuration
    • Use the suggested settings: Use entire disk and Set up this disk as an LVM group.
  9. Storage configuration
    • Keep the default settings and confirm that all data on the disk will be erased (Confirm destructive action).
  10. Profile configuration
    • Enter your name, the hostname (shown at the top of the Server Control Panel), your desired username, and a secure password.
  11. Upgrade to Ubuntu Pro
    • Skip the upgrade to Ubuntu Pro for now.
  12. SSH configuration
    • Select Install OpenSSH server.
  13. Featured server snaps
    • Skip this section and do not install any additional software.
  14. Installing system
    • The installation will now proceed.
    • After installation, you’ll see [Reboot Now] at the bottom of the screen. Choose this option.
    • You will be prompted to remove the installation medium.
    • In the Server Control Panel, go to Media > DVD-Drive and under currently attached, select detach DVD to eject the installation DVD. The system will then boot from the hard drive.
    • Press ENTER in the remote screen, and the server will reboot. The Ubuntu 24.04 LTS login screen will appear.

Login and software update

Log in using the credentials you provided during installation.

First, update the package list:

Bash
sudo apt update

Then update all packages:

Bash
sudo apt ugprade -y

Your Linux installation is now up to date.

Installing the Qemu guest agent

To improve server control through the Server Control Panel, you need a helper daemon to support communication between the server and the management software.

Install the Qemu guest agent with the following command:

Bash
sudo apt install qemu-guest-agent -y

It’s recommended to reboot the server from the Server Control Panel to complete the setup.

In the SCP, go to Control > Powercycle. After reboot, the message stating that the qemu-guest-agent is not installed should disappear.

Comments

Leave a Reply