• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

linux command to get machine info?

joecool

Platinum Member
i need to find out the basic hardware info about a bunch of linux boxes i have - cpu type/speed, amount of ram, etc. they are all running redhat 7.2. is there a basic linux command that will tell me this kind of stuff?

thanks,

joe
 
most of this can be found in the /proc directory. if you use a command like:

cat /proc/cpuinfo
cat /proc/meminfo

These will give you the info you want. If you do an ls on the /proc directory you will get the other options to try.

Good luck.
 
Originally posted by: rmrf
most of this can be found in the /proc directory. if you use a command like:

cat /proc/cpuinfo
cat /proc/meminfo

These will give you the info you want. If you do an ls on the /proc directory you will get the other options to try.

Good luck.

thanks, but my /proc dir is just full of a bunch of sub-dirs with numbers for names ... no cpuinfo, no meminfo. rats.
 
Back
Top