How can you find the version of Linux you are using on your computer?

Answer:
The best solution is this command (actually two in one):

uname -a && cat /etc/*release

The first part of the command tells you the version of the Linux kernel that is running. The second part of the command tells you the name of the distribution, like "Red Hat Enterprise Linux X.X". When asked this same question, most people only answer the first part, which is not always what the user needs to know.
First answer by ID1346030901. Last edit by Lsloan0000. Contributor trust: 4 [recommend contributor recommended]. Question popularity: 1 [recommend question].