Operating System - HP-UX
1834125 Members
1889 Online
110064 Solutions
New Discussion

Re: CPU Speed on RX2600 and number of CPU

 
Andy Nguyen_5
New Member

CPU Speed on RX2600 and number of CPU

I am new to RX2600. I need to find out how many cpu & speed of this RX2600.
5 REPLIES 5
Joseph Loo
Honored Contributor

Re: CPU Speed on RX2600 and number of CPU

hi,

refer to this spec:

http://www.hp.com/products1/servers/integrity/entry_level/rx2600/index.html

in short, maximum 2 CPU with speeds of 1.5GHz, 1.4GHz, 1.3GHz and 1GHz.

next time, please send such question to the server forum.

regards.
what you do not see does not mean you should not believe
Adisuria Wangsadinata_1
Honored Contributor

Re: CPU Speed on RX2600 and number of CPU

Hi Andy,

If you using HP-UX as the OS, you can check with SAM. Below is the steps :

1. login as root
2. goto SAM
# sam [enter]
3. goto 'performance monitor'
4. goto 'system properties'

From here, you can see the active & total processor and the clock frequency (speed).

Another way to find how many CPU is by this command below :

# ioscan -nfC processor

Hope this can help you.

Cheers,
Adisuria Wangsadinata

now working, next not working ... that's unix
Hoang Chi Cong_1
Honored Contributor

Re: CPU Speed on RX2600 and number of CPU

Hi Andy

HP has a tool call "Support Tool Manager".
You can check any hardware status, information including how many CPU, speed that you have:

CSTM - the command line interface
XSTM - the graphical interface

There is another way but with this way, you have to reboot your server.
All of the CPU's information will be display during the booting process.
Like this:
Firmware Version 42.19

Duplex Console IO Dependent Code (IODC) revision 1

------------------------------------------------------------------------------
(c) Copyright 1995-2000, Hewlett-Packard Company, All rights reserved
------------------------------------------------------------------------------

Processor Speed State CoProcessor State Cache Size
Number State Inst Data
--------- -------- --------------------- ----------------- ------------
0 550 MHz Active Functional 512 KB 1 MB
1 550 MHz Idle Functional 512 KB 1 MB
2 550 MHz Idle Functional 512 KB 1 MB
3 550 MHz Idle Functional 512 KB 1 MB

Central Bus Speed (in MHz) : 133



hope this helps
Regard,
Hoang Chi Cong
Looking for a special chance.......
Devender Khatana
Honored Contributor

Re: CPU Speed on RX2600 and number of CPU

Hi,

Apart from the above information the simplest method to find out the no. os CPU's is the top command. In will list the active processors on top alongwith utilization of indivisual processor.You can get no. of CPUs in machine from /opt/ignite/bin/print_manifest command also.

To find out the speed of CPU use :-
=======================================
HPUX=/stand/vmunix
MHZ=$(echo itick_per_tick/D \
| adb -k $HPUX /dev/kmem \
| tail -1 \
| awk '{print $2/10000}')
echo $MHZ
=========================================
Save these lines in a file and execute that file. It will give you the clock speed.

HTH,
Devender
Impossible itself mentions "I m possible"
Andy Nguyen_5
New Member

Re: CPU Speed on RX2600 and number of CPU

Thanks for all the replies.