How to check what Kernel and Distribution of Linux your running via the Command Line?
- KERNEL
Type in the following command: uname -r And hit enter
The command above will display the kernel version you are running eg. 2.6.28-13-generic
uname = Prints System Information -r = _Prints the kernel release
_
- DISTRIBUTION
- Type in the following command: cat /etc/issue And hit enter
- The command above will display the kernel version that you use eg. Ubuntu 9.04 \n \l
- cat = Concatenates files and prints on the standard output