Comments on How to get the kernel version?
Parent
How to get the kernel version?
+2
−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.
Post
+4
−0
uname
, short for Unix Name, is part of GNU coreutils, and thus very likely already installed:
$ uname --kernel-release
6.13.3-arch1-1
It has some other potentially interesting flags too. Go and have a look at the docs.
0 comment threads