1

I want to figure out what type of Red Hat Linux machine I am using. Is there a file on my system I can look at?

5 Answers5

9
cat /etc/*-release

Should be what you are looking for.

Josh Lindsey
  • 639
  • 1
  • 5
  • 7
2

uname -a will do it, and has the benefit of working on almost all distros and showing you other system info too.

In addition, you can try looking at /proc/version if your system has it.

user30749
  • 171
2

If it's recent enough:

lsb_release -a

Should give you some good information.

2

Right you can use lsb_release -a, or may be:


cat /etc/issue; uname -a
Ali Mezgani
  • 3,870
1

If you are interested in finding out the processor details /proc/cpuinfo or memory details /proc/meminfo will work as well. CPU info is particularly useful if you need to check for support of certain kinds of instruction extensions. It will list out all the supported extensions of the present CPU and also its present operating speed.

sybreon
  • 7,455