Do you want to know which version of Linux you are running?
`lsb_release -a`
You can also do the following, which works on FreeBSD:
`cat /etc/*os*release`
Finally, there is uname, which will tell you the exact Linux kernel your system booted:
`uname -r`
This command will tell you if you are using a 32 or 64bit Linux kernel:
`getconf LONG_BIT`
This command will tell you if your CPU supports 32 or 64 bit mode (lm == 64 bit mode):
`grep -o -w 'lm' /proc/cpuinfo | sort -u`
