Operating System - HP-UX
1847327 Members
2554 Online
110264 Solutions
New Discussion

Re: Locating processor information

 
SOLVED
Go to solution
Joel Shank
Valued Contributor

Locating processor information

I am trying to find out what type of processors I have on my various servers. I have a mixture of HPUX 10.20 and 11.00 operating systems and a mixture of D, K, N and V class servers.

I know my N and V servers are 64-bit PA-8x00 processors. How can I find out what the other servers have? Does anyone know a command that will display this type of info? In particular, I want to find out which are 64-bit capable, since I believe they are all PA-8x00.

Thanks,
JLS
4 REPLIES 4
Patrick Wallek
Honored Contributor
Solution

Re: Locating processor information

To find your processor type: go into SAM, then go to Performance Monitors, then go into System Properties. The first tab will list your processor information.

Another good URL for information on what machines will run HP-UX 11.00 is:

http://devresource.hp.com/STK/hpux_faq.html#C1
Karthik_2
Regular Advisor

Re: Locating processor information

Joel,
If your purpose is to find out which servers are capable of 64 bit you can find it from the /etc/.supported_bits file.
This file has a list of System models and if they will support 64 bits or not.
....9000/802/K250 32/64
9000/879/K260 32/64
9000/879/K260-EG 32/64
9000/889/K460-EG 32/64
9000/889/K460-XP 32/64
9000/898/K370 32/64
9000/804/K450 32/64
.......
This file is available only under 11.x

Cheers
Karthik...
Its ALL in the MATRIX
James R. Ferguson
Acclaimed Contributor

Re: Locating processor information

Hi Joel:

Try this:

# grep `model|awk -F/ '{print $3}'` /usr/sam/lib/mo/sched.models

Regards!

...JRF...


Bill McNAMARA_1
Honored Contributor

Re: Locating processor information

There is also a command called getconf
that'll tell you lots and lots about the cpu
and the system itself

You can also find out from the BCH INfo menu

Later,
Bill
It works for me (tm)