Operating System - HP-UX
1826373 Members
5141 Online
109692 Solutions
New Discussion

Re: command to find cpu name/type

 
SOLVED
Go to solution
Shivkumar
Super Advisor

command to find cpu name/type

Hi,

what is the command to find out cpu type/name, and pa-risc or itanium model of the servers ?

Thanks,
Shiv
9 REPLIES 9
James R. Ferguson
Acclaimed Contributor

Re: command to find cpu name/type

Hi Shiv:

# model

Regards!

...JRF...
spex
Honored Contributor

Re: command to find cpu name/type

Shiv,

# echo "selclass qualifier cpu;info;wait;infolog" | cstm

# model

# uname -a

PCS
James R. Ferguson
Acclaimed Contributor
Solution

Re: command to find cpu name/type

Hi Shiv:

Don't forget [ since you always have Ignite installed on your servers :-)) ]:

# /opt/ignite/bin/print_manifest

...which comes with its own manpages:

# man 1M print_manifest

This will give you quite a bit of information on your particular configuation.

Regards!

...JRF...
Sandman!
Honored Contributor

Re: command to find cpu name/type

Hi Shiv,

SAM is the best tool for this sort of info or...

# /usr/sbin/diag/contrib/pdcinfo -no_banner | grep -i "cpu module"

for CPU speed use...

# echo itick_per_usec/D | adb /stand/vmunix /dev/mem
Torsten.
Acclaimed Contributor

Re: command to find cpu name/type

For Itanium machines:

/usr/contrib/bin/machinfo

cstm won't provide info in this case!

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!   
Steven E. Protter
Exalted Contributor

Re: command to find cpu name/type

Shalom Shiv,

model is the universal command that works on both Itanium and PA-RISC.

Usually you get a speed statment from model, perhaps always, but you get enough information from the command to go online and determine what the actual CPU speed is.



SEP
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
inventsekar_1
Respected Contributor

Re: command to find cpu name/type

HI SHiv,
s. "model" is the good choice.
my system gives gives this output:
#model
9000/800/rp7410

go to hp 9000 servers page:
http://www.hp.com/products1/servers/HP9000_family_overview.html
search with rp7410 and u will get all the info u need.
HP 9000 server family brochure attached.
Be Tomorrow, Today.
Torsten.
Acclaimed Contributor

Re: command to find cpu name/type

"machinfo" will give you all you need for Itanium CPUs.

For PA-RISC, cstm will tell you the CPU product (e.g. AB354A) and name (e.g. PA 8800 CPU Module 3.2). Now you can lookup the product number at http://partsurfer.hp.com and you will get for this example:

AB354A = HP svr rp34x0 1GHz PA-8800 dual core CPU


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!   
Andrew Merritt_2
Honored Contributor

Re: command to find cpu name/type

# echo "selclass qualifier cpu;info;wait;infolog" | cstm

Note; this only works on PA systems. For IPF systems you need to run:

# echo "selclass qualifier system;info;wait;infolog" | cstm

(This should work, although there is an unrelated problem under investigation at the moment.)

Andrew