Operating System - Linux
1820057 Members
3072 Online
109608 Solutions
New Discussion юеВ

Re: How to get Hardware Information

 
SOLVED
Go to solution
praveen..
Super Advisor

How to get Hardware Information

Hi,
I need to make an inventory of my RHEL AS 4 servers .

so by which command, i can get the hardware details like

OS, Network, IP details,serial no., server model, no. of CPUs, memory details, CPU Speed, NIC speed.

Please suggest
7 REPLIES 7
g33k
Valued Contributor
Solution

Re: How to get Hardware Information

So for info about IPs of NIC's and more
ifconfig -a

For CPU:
cat /proc/cpuinfo

For OS and kernel version:
uname -a

other source
lspci
dmesg
Jean-Yves Picard
Trusted Contributor

Re: How to get Hardware Information

Hello,

I use
-cfg2html ( http://www.cfg2html.com/ )
-hponcfg ( package hponcfg-1.2.0-4 from Proliant Support Pack (search HP site !) )

cfg2html is free, I don't know about PSP.

Jean-Yves
Jaime Bolanos Rojas.
Honored Contributor

Re: How to get Hardware Information

Hi Praveen!

If you are looking for in more hardware information and monitoring tool, I would advice you to consider SIM ( system insight manager ).

Very very good tool, I would take my time to learn about it and have it running in my enviroment:

http://h18013.www1.hp.com/products/servers/management/hpsim/index.html?jumpid=reg_R1002_USEN

Regards,

Jaime.
Work hard when the need comes out.
Jaydeb Chakraborty
Occasional Advisor

Re: How to get Hardware Information

For serial number please have a look in hardware specific logs, Compaq Insight Base System Agent's log. like compaq/survey/surveyBASE-LINE-Mon-May-12-2003.txt for HP Pro leant server, will provide you all server related information.

See the following thread for more information related with server serial number.
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=1040173

Thanks!
Vipulinux
Respected Contributor

Re: How to get Hardware Information

Hello

You can get lot of HW details using DMIDECODE.

http://freshmeat.net/projects/dmidecode/

Cheers
Vipul
Lakshmi Narayanan
Occasional Advisor

Re: How to get Hardware Information

Hi Praveen,
for information about IPs of NIC's and more it is : ifconfig -a

For CPU information(it takes information from RAM, not from ur hard disk):
cat /proc/cpuinfo

To know about OS and kernel version:
uname -a

other source
lspci

Hope this will help you to find out the details.
Bye,
Have a nice day
The shortest way to do many things is to do only one thing at once
praveen..
Super Advisor

Re: How to get Hardware Information

#dmidecode
# cat /proc/cpuinfo

works

thanks