Operating System - HP-UX
1753959 Members
7429 Online
108811 Solutions
New Discussion юеВ

Re: how could i get processor model in PA-RISC machine

 
alert0919
Advisor

how could i get processor model in PA-RISC machine

how could i get processor model like this
processor model:1 Intel(R) Itanium 2 9100 series

in PA-RISC 11.11 and 11.23

I would like to use command
no interactive or get by C program
thanks
6 REPLIES 6
Torsten.
Acclaimed Contributor

Re: how could i get processor model in PA-RISC machine

Try this:

# echo "selclass qualifier cpu;info;wait;il"|/usr/sbin/cstm

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: how could i get processor model in PA-RISC machine

... depending on your system you get results like this:


...
FRU INFORMATION

Module Revision
------ --------
PA 8900 CPU Module 3.2
PA 8900 CPU Module 3.2
...



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!   
Ganesan R
Honored Contributor

Re: how could i get processor model in PA-RISC machine

Hi,

Try these commands.

#cat /var/tombstones/ts99 2>/dev/null | grep -i "CPU Module" | sed -e 's/^\ *//g' -e 's/ *$//' -e 's/\.* /-/g' 2>/dev/null

#echo "selclass qualifier cpu;info;wait;infolog" | /usr/sbin/cstm | grep "CPU Module"
Best wishes,

Ganesh.
alert0919
Advisor

Re: how could i get processor model in PA-RISC machine

so when I get cpu mode
need print "PA 8900 CPU Module 3.2 processor"
or "print PA 8900 CPU Module processor"
or other names
how to descript it
thanks
Ganesan R
Honored Contributor

Re: how could i get processor model in PA-RISC machine

Hi,

>>>how to descript it <<<

If the get the output like this,

PA 8900 CPU Module 3.2 processor

It means it is PARISC 8900 processor and the processor revision is 3.2
Best wishes,

Ganesh.
alert0919
Advisor

Re: how could i get processor model in PA-RISC machine

thanks for replies