1833150 Members
3581 Online
110051 Solutions
New Discussion

cpu clock speed

 
MD.IMTEYAZUL HASSAN
Contributor

cpu clock speed

Is there any specific command to find the cpu clock speed on PARISC in HP-UX.
Print_manifest command does not display the cpu clock speed on PARISC in HP-UX.

So please help me to get such information.
1 REPLY 1
Pete Randall
Outstanding Contributor

Re: cpu clock speed

You can use this little script snippet:

HPUX=/stand/vmunix

MHZ=$(echo itick_per_tick/D \
| adb -k $HPUX /dev/kmem \
| tail -1 \
| awk '{print $2/10000}')
echo $MHZ


Depending on your version of HP-UX, that is.


Pete

Pete