How to I see what version of Kernel I have - Printable Version +- Linux-Noob Forums (https://www.linux-noob.com/forums) +-- Forum: Linux Noob (https://www.linux-noob.com/forums/forum-3.html) +--- Forum: Kernel Related (https://www.linux-noob.com/forums/forum-61.html) +--- Thread: How to I see what version of Kernel I have (/thread-4057.html) |
How to I see what version of Kernel I have - anyweb - 2003-12-11 How to I see what version of Kernel I have installed? You should be able to see the version as a normal user, so open up a console. Once done type uname -ar you should see something like this:- [anyweb@localhost anyweb]$ uname -ar Linux localhost.localdomain 2.4.22-1.2115.nptl #1 Wed Oct 29 17:00:00 EST 2003 i686 i686 i386 GNU/Linux That tells me that my kernel version is = 2.4.22-1.2115.nptl. How to I see what version of Kernel I have - Thunder7447 - 2003-12-12 or [tv@62 test]$ rpm -q kernel kernel-2.4.22-1.2115.nptl kernel-2.4.22-1.2129.nptl How to I see what version of Kernel I have - kZo - 2003-12-12 [img]<___base_url___>/uploads/emoticons/default_dry.png[/img] ....OR cat /proc/version IRSSI Chat client - /exec -o cat /proc/version [img]<___base_url___>/uploads/emoticons/default_ph34r.png[/img] How to I see what version of Kernel I have - Oroshi - 2003-12-13 If you want to display just Kernel only. use [venom@odyssey venom]$ uname -r 2.4.22-1.2115.nptl there u go :) |