How to show version of currently installed Ubuntu Linux?

5

2

Possible Duplicate:
How do you find the Ubuntu version (release number / name) from the command line?

I have Ubuntu Linux installed on a computer. How can I check in the command line (no GUI desktop available) which version of the distribution it is running?

viam0Zah

Posted 2011-02-14T14:36:46.203

Reputation: 1 909

Question was closed 2011-02-14T15:04:57.580

Answers

17

Try this command:

lsb_release -a

It should give you a hint of the version.

Andee

Posted 2011-02-14T14:36:46.203

Reputation: 559

4

The command is:

$ cat /etc/lsb-release

Which will return Ubuntu specific version information

Or,

$ uname -a

which will give you information about the kernel and hardware

Kimbo

Posted 2011-02-14T14:36:46.203

Reputation: 66