How do I find out my Linux kernel version? How can I find the kernel version at shell prompt on Linux?
Linux stores version information in a file called /proc/version. As a sysadmin you need to know the version number of the Linux kernel on given server or workstation. This information can be used for the following purpose:
- [donotprint][/donotprint]
- To fix device driver issue.
- Install correct driver for NIC/RAID card.
- Diagnosing system.
- Upgrading system and more.
Howto: Find the kernel version
You need to type the following command at shell prompt:
$ uname -r
Sample outputs:
2.6.18-194.3.1.el5
The following command gives out more information:
$ cat /proc/version
Sample outputs:
Linux version 2.6.18-194.3.1.el5 ([email protected]) (gcc version 4.1.2 20080704 (Red Hat 4.1.2-48)) #1 SMP Sun May 2 04:17:42 EDT 2010
Please note that you can also use the following command:
$ uname -a
Sample outputs:
Linux b1 3.2.0-51-generic #77-Ubuntu SMP Wed Jul 24 20:18:19 UTC 2013 x86_64 x86_64 x86_64 GNU/Linux
More About Linux Kernel Version Release Numbers Between 1.0 and 2.6.x
The Linux kernel used odd minor version numbers to denote development releases and even minor version numbers to denote stable releases; For example, Linux kernel version 2.3 was a development version and Linux 2.4 was the stable version. Since 2004 release of the v2.6 kernel, Linux no longer uses this system, and has a much shorter release cycle, instead now simply incrementing the third number, using a fourth number as necessary.
Related media
This tutorial is also available in a quick video format:
- How To Find Out FreeBSD Version and Patch Level Number
- How To Find Which Linux Kernel Version Is Installed On My System
- Find Linux / UNIX Kernel Version Command
- How To Find Out If 32 or 64 bit Unix OS Installed On Server
- Linux: Find If Processor (CPU) is 64 bit / 32 bit [long mode ~ lm]
- List or Check Installed Linux Kernels
- Find Linux Kernel Version Command
- Linux Command: Show Linux Version