Operating System - HP-UX
1837205 Members
2605 Online
110115 Solutions
New Discussion

Re: Basic Information on HPUX

 
SOLVED
Go to solution
panks
Regular Advisor

Basic Information on HPUX

Dear All,
I am working on AIX and Solaris
Could you help me in getting this basic information on HPUX:

1) How to check processor details
2) How to check physical and swap memory

And is there any basic system adminstration book for HPUX, which I can go through ??
6 REPLIES 6
James R. Ferguson
Acclaimed Contributor

Re: Basic Information on HPUX

Hi:

You have a wealth of documentation here:

http://docs.hp.com/index.html

You might start with:

http://docs.hp.com/en/B2355-90950/index.html

http://docs.hp.com/en/5992-3384/index.html

Regards!

...JRF...
Pete Randall
Outstanding Contributor

Re: Basic Information on HPUX

I'll attach my standard system properties write-up. That should give you a start.


Pete

Pete
OFC_EDM
Respected Contributor

Re: Basic Information on HPUX

For processor details there's many ways. And the other responses showed the most popular.

The fast, easy and visually appealling way is to use the utility "top" and also "glance". Top I think comes with basic os install. glance may not.

On older versions of HP-UX run "top -w" to show individual CPU information.

On newer version just run top and it will show all cpus

You will also see physical memory from top.

Another nice utility is glance.
Run glance and press m for memory
Press w for swap
press ? to get a list of information it will provide.
The Devil is in the detail.
Ramesh S
Esteemed Contributor
Solution

Re: Basic Information on HPUX

Hi

>>For CPU & Physical mempey

IPF system : #machinfo

PA-RISC;

#echo "selclass qualifier memory;info;wait;infolog" | /usr/sbin/cstm | grep 'Total Configured' -- Mempry Info

#echo "CPU Speed is = \c" ; echo itick_per_tick/D|adb -k /stand/vmunix /dev/kmem|tail -1|cut -f2 | awk '{printf "%0f MHz\n", $1/10000}' -- CPU info

>>For swap information:

#swapinfo -tam

Best Regards,
Ramesh




Torsten.
Acclaimed Contributor

Re: Basic Information on HPUX

Regarding the CPU "machinfo" is my first choice!

Examples.

Integrity running 11.23:

machinfo
CPU info:
Number of CPUs = 1
Clock speed = 1400 MHz
Bus speed = 400 MT/s
CPUID registers
vendor information = "GenuineIntel"
processor serial number = 0x0000000000000000
processor version info = 0x000000001f010504
architecture revision: 0
processor family: 31 Intel(R) Itanium 2 Family Processors
processor model: 1 Intel(R) Itanium 2 processor
processor revision: 5 Stepping B1
largest CPUID reg: 4
processor capabilities = 0x0000000000000001
implements long branch: 1
Bus features
implemented = 0xbdf0000060000000
selected = 0x0000000040000000
Bus Lock Signal masked

Cache info:
L1 Instruction: size = 16 KB, associativity = 4
L1 Data: size = 16 KB, associativity = 4
L2 Unified: size = 256 KB, associativity = 8
L3 Unified: size = 1536 KB, associativity = 6

Memory = 4084 MB (3.988281 GB)

Firmware info:
Firmware revision = 02.31
FP SWA driver revision: 1.18
IPMI is supported on this system.
BMC version: 1.53
....




PA-RISC running 11.31:

#machinfo
CPU info:
1 PA-RISC 8800 processor (800 MHz, 32 MB)
CPU version 4
2 logical processors (2 per socket)

Memory: 2046 MB (2 GB)

Firmware info:
Firmware revision: 46.34
IPMI is supported on this system.
BMC firmware revision: 3.52

....

Hope this helps!
Regards
Torsten.

__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.

__________________________________________________
No support by private messages. Please ask the forum!

If you feel this was helpful please click the KUDOS! thumb below!   
OFC_EDM
Respected Contributor

Re: Basic Information on HPUX

I like that machinfo!!

panks since you're new to HP here's a link to some Solaris to HP equivalent commands.
A little dated but still useful

http://h20331.www2.hp.com/Hpsub/cache/288622-0-0-225-121.html
The Devil is in the detail.