Come posso controllare la versione di Ubuntu che sto usando?

Come posso controllare la mia attuale versione di Ubuntu attraverso la riga di comando e la GUI?

Come detto nella pagina ufficiale, usare:

lsb_release -a

La tua versione appare sulla linea "Descrizione".

Se vuoi controllarla attraverso il tuo ambiente desktop, puoi controllare System Settings -> Details.

Commentari (10)

Utilizzare:

cat /etc/*release

Nel mio caso ha prodotto il seguente output:

DISTRIB_ID=LinuxMint
DISTRIB_RELEASE=17.2
DISTRIB_CODENAME=rafaela
DISTRIB_DESCRIPTION="Linux Mint 17.2 Rafaela"
NAME="Ubuntu"
VERSION="14.04.3 LTS, Trusty Tahr"
ID=ubuntu
ID_LIKE=debian
PRETTY_NAME="Ubuntu 14.04.3 LTS"
VERSION_ID="14.04"
HOME_URL="http://www.ubuntu.com/"
SUPPORT_URL="http://help.ubuntu.com/"
BUG_REPORT_URL="http://bugs.launchpad.net/ubuntu/"
Commentari (9)

L'esecuzione di questo in Terminale vi darà tutte le informazioni di cui potreste aver bisogno:

lsb_release -a

E puoi accedervi nella GUI andando su System Settings > Details:

Commentari (0)