How to know Linux version you are running


The simplest command which you can run is uname

uname has various options which you can use

for example                                                                                                

uname -a

will display all the information related to machine which is available.

uname --help will show all the parameters which can be used.

The following wikipedia link is useful

http://en.wikipedia.org/wiki/Uname

Comments