1831374 Members
3545 Online
110025 Solutions
New Discussion

Re: Processor Features

 
lydi
Occasional Contributor

Processor Features

Hello!

How can i know what kind of processor my servers have?

I don't own any documentation about the model and neither somebody else :(

Through the command "model" and "uname -a" I find out that I have 2 kind of servers:
9000/800/N4000-55 operative system is HP-UX 11
9000/800/rp4440 operative system is HP-UX 11.11

I need to know velocity, number of operations, etc....

6 REPLIES 6
Oviwan
Honored Contributor

Re: Processor Features

hy

try "machinfo"

Regards
Pete Randall
Outstanding Contributor

Re: Processor Features

Do a google search for "HP Hardware @ a Glance". This gives you a detailed view of all the (current) HP servers and storage.

From that document, I can tell you that your rp4440 has either pa8800 or pa8900 processors. From other documents that I have accumulated, I can tell you that your N4000 has pa8600 processors - because the 55 tells me that they're running at 550 MHz - other wise they would be pa8500).


Pete

Pete
V. Nyga
Honored Contributor

Re: Processor Features

Hi,

FAQ (by procura):
How many CPU's does my system have?
grep processor /var/adm/syslog/syslog.log

What is my CPU speed?
echo itick_per_usec/D | adb -k /stand/vmunix /dev/mem

What is my CPU type?
(model for ex. 9000/800/D390)
grep -i d390 /opt/langtools/lib/sched.models
or
grep -i d390 /usr/sam/lib/mo/sched.models
or
echo "selclass qualifier cpu;info;wait;infolog" | /usr/sbin/cstm | grep "CPU Module"

more infos (except HP sites):
http://www.openpa.net/systems/

HTH
Volkmar
*** Say 'Thanks' with Kudos ***
yogeshvar
Occasional Contributor

Re: Processor Features

Login into your server then,
1. sam and then go ..
2. performance monitors then...
3. system properties.


Regards
Yogesh
Dennis Handly
Acclaimed Contributor

Re: Processor Features

>Oviwan: try "machinfo"

This only works on IPF. The author is on PA.
lydi
Occasional Contributor

Re: Processor Features

Thank you very much!