How do I find out my RHEL (Red Hat Enterprise Linux) 6 Linux kernel version number running on HP server?
You need to use the uname command to find name and information about current kernel. It can provide the following information
- The kernel name (-s)
- The Network node hostname (-n)
- The kernel release (-r)
- The kernel version (-v)
- The machine hardware name (-m)
- The processor type (-p)
- The hardware platform (-i)
- The operating system (-o)
RHEL 6 Kernel Version Command
Open a command-line terminal (select Applications > Accessories > Terminal), OR login to remote server using the ssh command and then type:
$ uname -r
Sample outputs:
2.6.32-220.2.1.el6.x86_6
The following provides a little more information:
$ uname -mrs
Sample outputs:
Linux 2.6.32-220.2.1.el6.x86_64 x86_64
You can see the complete information with the following command:
$ uname -a
Sample outputs:
Linux example.cyberciti.biz 2.6.32-220.2.1.el6.x86_64 #1 SMP Tue Dec 13 16:21:34 EST 2011 x86_64 x86_64 x86_64 GNU/Linux
Find Red Hat Linux Distribution Version
Type the following cat command:
$ cat /etc/redhat-release
Sample outputs:
Red Hat Enterprise Linux Server release 6.2 (Santiago)
You can also view the manual page on uname using the following command:
$ man uname
- 30 Handy Bash Shell Aliases For Linux / Unix / Mac OS X
- Top 30 Nmap Command Examples For Sys/Network Admins
- 25 PHP Security Best Practices For Sys Admins
- 20 Linux System Monitoring Tools Every SysAdmin Should Know
- 20 Linux Server Hardening Security Tips
- Linux: 20 Iptables Examples For New SysAdmins
- Top 20 OpenSSH Server Best Security Practices
- Top 20 Nginx WebServer Best Security Practices
- 20 Examples: Make Sure Unix / Linux Configuration Files Are Free From Syntax Errors
- 15 Greatest Open Source Terminal Applications Of 2012

- My 10 UNIX Command Line Mistakes
- Top 10 Open Source Web-Based Project Management Software
- Top 5 Email Client For Linux, Mac OS X, and Windows Users
- The Novice Guide To Buying A Linux Laptop











{ 2 comments… read them below or add one }
Also u can try this
kernel:
file /boot/vmlinuz-2.6.32-*
os ver:
rpm -qa | grep release
cat /etc/issue
Works on any Linux distribution.