Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How display Hardware information in Redhat 6.2

Status
Not open for further replies.

mingx98

Technical User
Mar 16, 2000
78
0
0
CA
Hi,
How can I get Cpu ,#, frequence, Mem size,
HD size and type, Vedio card and other info about
hardware in Linux ?

Thanks
 
type hwinfo ;
If it exists then
hwinfo > dump.txt ; the
/proc filesystem has all the info on detected devices , proc , net , performance stats and
tunable parameters. You will find what you need there.


 
Hi,

You can do :

cat /proc/cpuinfo
cat /proc/meminfo
cat /proc/partitions
cat /proc/pci

also for the hard drives you can do a list-only fdisk (as root) -

/sbin/fdisk -l /dev/hda

For the graphics do (as root)

/usr/X11R6/bin/SuperProbe

This will examine your video card etc.

Rgds, Iain





 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top