Operating System - HP-UX
1834495 Members
3229 Online
110067 Solutions
New Discussion

Re: system reporting scripts

 
khilari
Regular Advisor

system reporting scripts

hi people, can i have any script which will tell me processor speed of my server.Thanks
3 REPLIES 3
spex
Honored Contributor

Re: system reporting scripts

Victor Fridyev
Honored Contributor

Re: system reporting scripts

Hi,

For PA-RISC:
echo "itick_per_tick/D" |
adb -k /stand/vmunix /dev/kmem |
grep "000" | awk '{print $2/10000 " MHz" }'

For Itanium:
echo "itick_per_tick/D" |
adb -o /stand/vmunix /dev/kmem |
grep "000" | awk '{print $2/10000 " MHz" }'

HTH
Entities are not to be multiplied beyond necessity - RTFM
Ken Grabowski
Respected Contributor

Re: system reporting scripts

Victor is correct unless your running 11.23 on PA-RISC. Then you have to use his example for Itanium.