How to get the kernel version?
+1
−0
How to get the version of the currently running Linux kernel?
I'm looking for a commandline solution, but feel free to post GUI solutions as well.
2 answers
+1
−0
You can find the version information in /proc/version
.
$ cat /proc/version
Linux version 6.8.0-53-generic (buildd@lcy02-amd64-046) (x86_64-linux-gnu-gcc-13 (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0, GNU ld (GNU Binutils for Ubuntu) 2.42) #55-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 17 15:37:52 UTC 2025
In this case it is 6.8.0
, with the distribution specific package version 6.8.0-53-generic
.
0 comment threads