1830705 Members
2439 Online
110015 Solutions
New Discussion

Re: CPU details

 
mark yeo
Advisor

CPU details

Hi, i did a "ioscan -fnCprocessor ". However, i want to find the

1) CPU type
2) CPU Frequency.

I am on hpux 11.0

Please advise.
9 REPLIES 9
Peter Godron
Honored Contributor

Re: CPU details

Mark,
SAM can provide that info.
Performance Monitor --> System Properties
Regards
Peter Godron
Honored Contributor

Re: CPU details

Mark,
or from the command line:
CPU Frequency:
echo itick_per_usec/D | adb -k /stand/vmunix /dev/mem
Number of processors:
echo runningprocs/D | adb -k /stand/vmunix /dev/mem

Regards
Fred Ruffet
Honored Contributor

Re: CPU details

Processors type :
grep -i $(model | tr "/" " " | awk '{print $NF}') /usr/sam/lib/mo/sched.models | awk '{print $NF}'

Processors frequency :
echo itick_per_usec/D | adb -k /stand/vmunix /dev/mem | tail -1 | awk '{print $NF}'

For more information, see on procura's website :
http://mirrors.develooper.com/hpux/#FAQ

Regards,

Fred
--

"Reality is just a point of view." (P. K. D.)
Y.J.JIN
Advisor

Re: CPU details

Hi,

You can try this if the "ts90" file exist.
ex.
cat /var/tombstones/ts90

Hope this help you .
Indira Aramandla
Honored Contributor

Re: CPU details

Hi Mark,

To know the processor model do this

First get the system model using model
It will display liike this â 9000/800/L1500-7xâ

Then grep for the model in the models.

Eg:-

#grep L1500-7x /usr/sam/lib/mo/sched.models
L1500-7x 2.0 PA8700

# grep K360 /usr/sam/lib/mo/sched.models
K360 2.0 PA8000

To get the processor speed

echo itick_per_tick/D | adb $kernel /dev/kmem


In
Never give up, Keep Trying
Ranjith_5
Honored Contributor

Re: CPU details

Hi Try the following.


Following command will give the model of Server.

#model
9000/800/L2000-5X

Following Output of the command will be your CPU speed.

#echo itick_per_usec/D | adb -k /stand/vmunix /dev/kmem | awk '{print $2}'



HTH

Regards,
Syam
Fabio Ettore
Honored Contributor

Re: CPU details

Hi mark,

assigning points is useful for future searches in ITRC to know what reply helped you better. That is the main goal of points in this forum.

Then I ask you to assign points to people that helped you now and in your previous threads.

Thanks for your colalboration!

Best regards,
Fabio

P.S.: no points for my post please....
WISH? IMPROVEMENT!
Michael Palmgren
Frequent Advisor

Re: CPU details

Hi!

You can get the answer by using STM

/Michael
mark yeo
Advisor

Re: CPU details

Hi guys.

Thanks for your help. And i have assigned the points too. Cheers