How Can We Help?
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
- Type in the following command:
- 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
- Type in the following command: