Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

CPU type 1

Status
Not open for further replies.

kozlow

MIS
Mar 3, 2003
326
US
Is there a command in HP-UX that will tell you the type and speed of the CPUs on a server?

I have found in AIX the uname command can be used as long as you have the spread sheet to match the last digits with the type....
 
Hi,
=== CPU-Type ===
find out the HW path of the processor:

ioscan -FkCprocessor | awk '{FS=":";print $11}'

for a given HW-path, run

echo "Map\nSel path <HWpath>\nInformation\nwait\nInfoLog\nDone\nExit\nOK\n" | cstm

to find out everything you ever wanted to know about your cpu. But be careful: PA8900 will be reported as PA8800, but with two cores, e.g.
CPU(0A) PA8800 3.2
CPU(0B) PA8800 3.2

=== CPU-speed ===

find out cpu frequency in MHz on pa-risc system (use the compat mode on ia64) with

itick_per_usec/D' | adb -k /stand/vmunix /dev/kmem


=== ia64 ===

run "machinfo" on ia64 systems.

have fun.
 
I was using the stm graphic version but it would return

Processor Speed: N/A

The
echo 'itick_per_usec/D' | adb -k /stand/vmunix /dev/kmem
gave me what I needed...

Thanks again...
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top