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?

link|improve this question

78% accept rate
1  
Duplicate of superuser.com/questions/21634/… – squircle Feb 14 '11 at 14:40
I'm sorry, it is really a duplicate. I didn't find the other question. – Török Gábor Feb 14 '11 at 14:53
feedback

closed as exact duplicate by Dennis Williamson, David Spillett, Török Gábor, studiohack Feb 14 '11 at 15:04

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

2 Answers

Try this command:

lsb_release -a

link|improve this answer
feedback

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

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.