Installare l'interfaccia grafica su Ubuntu Server

Normalmente il server linux non ha interfaccia grafica, ma èpossibile installare la GUI con pochissime righe di console.

Da terminale, per installare l'interfaccia di default scrivere:

sudo apt-get update
sudo apt-get install ubuntu-desktop

Oppure per installare l'interfaccia senza addon (openoffice, Email) :

sudo apt-get update

sudo aptitude install --without-recommends ubuntu-desktop

Oppure per installare un ambiente veramente minimale:

sudo apt-get update
sudo apt-get install xubuntu-desktop

Oppure per installare kubuntu (KDE):

sudo apt-get update
sudo apt-get install kubuntu-desktop

Oppure KDE minimal:

sudo apt-get update
sudo apt-get install kde-minimal


Al termine dell'installazione riavviare il server con reboot.