How can I determine the version of the running kernel?
Tell me more
×
Ask Ubuntu is a question and answer site for
Ubuntu users and developers. It's 100% free, no registration required.
|
|
if you don't want to open a terminal, you can view your kernel version using
|
||||
|
|
|
The official version of an Ubuntu kernel is found in the /proc/version_signature file. This file contains both the full Ubuntu version of the kernel and the mainline version on which it is based. The first field is always Ubuntu, the second field is the Ubuntu kernel version, and the final field is the upstream version: $ cat /proc/version_signature Ubuntu 2.6.35-6.9-generic 2.6.35-rc3 $ This and many questions just like it are answered in Ubuntu Kernel Team's wiki specifically the FAQ. |
|||||
|

