Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Mailing Lists -> Oracle-L -> Re: Find CPU clock speed on HP-UX 11
Hi
In solaris use "prtconf" command
In HPUX
Use the following script to determine the clock speed:
HPUX=/stand/vmunix # 10.x
C=`echo itick_per_tick/D | adb $HPUX /dev/kmem | tail -1 \
| awk '{print $2/10000}'`
echo "Clock speed of `hostname` is: $C Mhz."
> Hi!
>
> I'm new to HP-UX and need to find out how many processors are in a mchine
> and at what clock speed they operate. I can get the number of CPUs through
> glance or top, but I have no idea about the clock speed. How would I get
> that information?
>
> I would know how to do it on Solaris though... ;)
>
> Thanks,
> Helmut
>
> --
> Please see the official ORACLE-L FAQ: http://www.orafaq.net
> --
> Author: Daiminger, Helmut
> INET: HELMUT.DAIMINGER_at_wwk.de
>
> Fat City Network Services -- 858-538-5051 http://www.fatcity.com
> San Diego, California -- Mailing list and web hosting services
> ---------------------------------------------------------------------
> To REMOVE yourself from this mailing list, send an E-Mail message
> to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in
> the message BODY, include a line containing: UNSUB ORACLE-L
> (or the name of mailing list you want to be removed from). You may
> also send the HELP command for other information (like subscribing).
>
-- Please see the official ORACLE-L FAQ: http://www.orafaq.net -- Author: <bulbultyagi_at_now-india.net.in INET: bulbultyagi_at_now-india.net.in Fat City Network Services -- 858-538-5051 http://www.fatcity.com San Diego, California -- Mailing list and web hosting services --------------------------------------------------------------------- To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).Received on Tue Oct 21 2003 - 23:24:35 CDT