Ubuntu version

Asked by Kallol Roy

How to get the Ubuntu version installed via command line?
Will the command lsb_release help?

Question information

Language:
English Edit question
Status:
Solved
For:
Ubuntu gnome-terminal Edit question
Assignee:
No assignee Edit question
Solved by:
Kallol Roy
Solved:
Last query:
Last reply:
Revision history for this message
actionparsnip (andrew-woodhead666) said :
#1

lsb_release -a

or

cat /etc/issue

Revision history for this message
N1ck 7h0m4d4k15 (nicktux) said :
#2

~$ lsb_release -rcd ; uname -r

you can see Description , Release , Codename , Kernel version .

~$ cat /etc/issue.net

You can see the Description only.

Revision history for this message
Warren Hill (warren-hill) said :
#3

The commands I usually use to find out what is installed are

lsb_release -a; uname -a

this gives the version of Ubuntu and Linux kernel installed.

Revision history for this message
Mark Rijckenberg (markrijckenberg) said :
#4

I suggest reading this as well:

https://help.ubuntu.com/community/ExternalGuides

Revision history for this message
tanveer (tanveeraddozai) said :
#5

~$ cat /etc/lsb-release

Revision history for this message
Kallol Roy (kallol08) said :
#6

Thanks all. The answers had helped a lot.