Installare Ubuntu Server 24.04 LTS

Pubblicato il 20/04/2026 Linux

Download e boot

Scarica l'ISO da ubuntu.com/download/server e crea una chiavetta con Rufus (Windows) o dd su Linux:

sudo dd if=ubuntu-24.04-live-server-amd64.iso of=/dev/sdX bs=4M status=progress

Installer

Scegli lingua, layout tastiera, configurazione rete (DHCP o IP statico). Nel partizionamento, su un disco dedicato va benissimo "Use entire disk with LVM".

Utente e SSH

Crea l'utente amministratore e spunta "Install OpenSSH server": ti servirà subito per accedere da remoto. Puoi anche importare la tua chiave SSH da GitHub.

Primo aggiornamento

sudo apt update && sudo apt full-upgrade -y && sudo reboot