1832973 Members
2289 Online
110048 Solutions
New Discussion

System configuration

 
SOLVED
Go to solution
Khashru
Valued Contributor

System configuration

Is there any unix command that will give me the hardware configuration of a hp9000 server. Information like number of CPU, Model speed. RAM, Number of internal disk. lan, Fc card information.
9 REPLIES 9
Torsten.
Acclaimed Contributor
Solution

Re: System configuration

There are many different commands and tools.

You can run the online diagnostics for example, or

/opt/ignite/bin/print_manifest

Hope this helps!
Regards
Torsten.

__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.

__________________________________________________
No support by private messages. Please ask the forum!

If you feel this was helpful please click the KUDOS! thumb below!   
freddy_21
Respected Contributor

Re: System configuration

you can run nickel script and you can found about your hardware configuration


Steps:
1. Unzip nickel.zip in PC
2. If /opt/contrib/bin does not exist,
# mkdir -p /opt/contrib/bin
3. FTP in "BINARY" mode, 'nickel' to /opt/contrib/bin
4. # cd /opt/contrib/bin
5. # chmod 555 nickel
6. # ./nickel
7. A file: nickel.yourhostname.tar.gz will be created.
8. FTP in "BINARY" mode, nickel.yourhostname.tar.gz to PC
("ASCII" mode will corrupt the .tar.gz file)


thanks
freddy
Khashru
Valued Contributor

Re: System configuration

Hi Torsten,

It is giving almost all the required information. But i am confused in one place. i have a 7420 and i am using 2 npar and one npar has 2 vpar. But the output shows it has three processor. Also i need to find out the speed and model of the processor.

System Hardware

Model: 9000/800/rp7420
Main Memory: 2029 MB
Processors: 3
OS mode: 64 bit
LAN hardware ID: 0x001279B353C2
LAN hardware ID: 0x001279B353C3
LAN hardware ID: 0x000F202BE4A5
LAN hardware ID: 0x001185EB5358
LAN hardware ID: 0x001185EB5345
Software ID: Z3e119e01d7e205d5
Partition ID: Z3e119e01d7e205d5_P1_V00
Keyboard Language: Not_Applicable
Torsten.
Acclaimed Contributor

Re: System configuration

Regarding the CPU speed:

a possibility is to run SAM -> performance monitors -> system properties

The diags output is limited to the nPar level. You will see the number of CPUs in a npar, regardsless if there are vPars running or not.

Hope this helps!
Regards
Torsten.

__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.

__________________________________________________
No support by private messages. Please ask the forum!

If you feel this was helpful please click the KUDOS! thumb below!   
Torsten.
Acclaimed Contributor

Re: System configuration

There are also some nice scripts to get the CPU speed, like this

http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=1044137&admit=-682735245+1153891295174+28353475

(see the post from Pete Randall)

Hope this helps!
Regards
Torsten.

__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.

__________________________________________________
No support by private messages. Please ask the forum!

If you feel this was helpful please click the KUDOS! thumb below!   
inventsekar_1
Respected Contributor

Re: System configuration

HI khashru,
number of CPU's can be found from "top" command.


lan informations for 9000systems:
"lanscan" will give information
http://docs.hp.com/en/A5201-10028/ix01.html

lanscan man page:
http://docs.hp.com/en/B2355-90781docs/B2355-90781docs.pdf
Be Tomorrow, Today.
sudhapage
Regular Advisor

Re: System configuration

Hi

For CPU Speed Just type this command.

echo "itick_per_usec/D" | adb -k /stand/vmunix /dev/kmem

Regards,
Sudhakaran.K
Yogeeraj_1
Honored Contributor

Re: System configuration

hi,

you can also get more information on your LAN interfaces using the following script:

#!/usr/bin/sh
PATH=/usr/sbin:/usr/bin
ppas=`lanscan | awk '$3~/^[0-9]$/{print $3}' | xargs`
for i in $ppas
do
printf "Card at PPA %s - " $i
ipa=`ifconfig lan${i} 2>/dev/null | awk '{ip=$2}END{if(ip==""){printf("Not assig
ned ")}else{printf("%s ",ip)}}'`
printf "IP Address: %15s- " "$ipa"
lanadmin -x $i 2>/dev/null | awk '{$1="";printf("%s",$0)}'
echo ""
done


hope this helps too!

kind regards
yogeeraj
No person was ever honoured for what he received. Honour has been the reward for what he gave (clavin coolidge)
freddy_21
Respected Contributor

Re: System configuration

hi Khashru,

please run nickel script to get information for each server. i think about number of cpu, cpu speed and size for memory already capture by nickel. the output is HTML file. so put at your pc, and open that file. you can get all information.

thanks
freddy