I can use uname and cat /proc/version but all I get is the kernel version.

How do I know whether I'm running RHEL4 or 5.5 or such?

link|improve this question

69% accept rate
feedback

6 Answers

up vote 12 down vote accepted

You can find out in the file /etc/issue

cat /etc/issue

And also on redhat based systems, you can find out in /etc/redhat-release

cat /etc/redhat-release 
link|improve this answer
This is the best answer so far, I have both files on my Red Hat server. Thank you! – PP. Oct 6 '10 at 9:01
feedback

cat /etc/redhat-release

link|improve this answer
feedback

/etc/redhat-release is the usual way, but be careful if you are working on an unfamiliar server. Administrators have been known to "tweak" redhat-release to permit certain software packages requiring Redhat Enterprise to install on similar distributions which are not officially supported by the vendor. For example, IBM's Lotus Domino package typically looks for RHEL before allowing the installer to run, but it can be installed on CentOS by "faking out" the string in /etc/redhat-release.

link|improve this answer
feedback

cat /etc/redhat-release will tell you.

link|improve this answer
feedback

"rpm -q --whatprovides /etc/redhat-release" can also be used (and it works on both RedHat and CentOS). The version portion of the output should be the OS version.

e.g. An output of "redhat-release-5Server-5.4.0.3" shows that the box is running RHEL 5.4 while "centos-release-5-5.el5.centos" indicates that the box is running CentOS 5.5.

link|improve this answer
feedback

You can also use more /proc/version

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.