- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Processor information on HP-UX
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-16-2004 08:22 AM
04-16-2004 08:22 AM
Processor information on HP-UX
Is there a command I can run to retrieve the number of processors and type of processor on the system - using HP-UX 11?
Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-16-2004 08:30 AM
04-16-2004 08:30 AM
Re: Processor information on HP-UX
Otherwise use the cstm,mstm,xstm utilities.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-16-2004 08:32 AM
04-16-2004 08:32 AM
Re: Processor information on HP-UX
if you have ignite installed on your server the command /opt/ignite/bin/print_manifest will give you a wealth of information about your system. Including the number of processors, I am unsure of how to determine the type however. Hope this helps a bit
Regards
Scott Palmer
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-16-2004 11:10 AM
04-16-2004 11:10 AM
Re: Processor information on HP-UX
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-16-2004 11:27 AM
04-16-2004 11:27 AM
Re: Processor information on HP-UX
for no of processors,
ioscan -fnk |grep -i Processor |wc -l
Type of Processor,
First find "system model"
# model
Now grep for this model in /usr/lib/sched.models file.
grep "xyz" /usr/lib/sched.models
This will give you the type of processors on the system.
Hope this helps.
Regds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-16-2004 05:56 PM
04-16-2004 05:56 PM
Re: Processor information on HP-UX
Look at the cstm.txt file after running the following command as root:
#echo "map selall info;wait infolog" | cstm > csmt.txt
Regards,
Richard
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-16-2004 07:15 PM
04-16-2004 07:15 PM
Re: Processor information on HP-UX
--8<---
How many CPU's does my system have?
a5:/wrk 105 > grep processor /var/adm/syslog/syslog.log
Nov 5 13:10:54 a5 vmunix: 160 processor
a5:/wrk 105 > ioscan -fnkC processor
Class I H/W Path Driver S/W State H/W Type Description
===================================================================
processor 0 160 processor CLAIMED PROCESSOR Processor
a5:/wrk 106 > echo "selclass qualifier cpu;infolog" | /usr/sbin/cstm | grep "CPU Module"
PA 8600 CPU Module 3.1
a5:/wrk 107 > echo "sc product cpu;il" | /usr/sbin/cstm | grep 'CPU Module'
PA 8600 CPU Module 3.1
a5:/wrk 108 >
Or with Perl:
a5:/wrk 108 > perl -MUnix::Processors -le'print join"\t",$_->id,$_->state,$_->type,$_->clock for @{Unix::Processors->new()->processors}'
0 online HP PA-RISC 2.0 750
1 online HP PA-RISC 2.0 750
a5:/wrk 109 >
What is my CPU type?
d3:/wrk 105 > model
9000/800/D390
d3:/wrk 105 > grep -i d390 /opt/langtools/lib/sched.models
D390 2.0 PA8200
d3:/wrk 106 > grep -i d390 /usr/sam/lib/mo/sched.models
D390 2.0 PA8000
d3:/wrk 107 > echo "selclass qualifier cpu;info;wait;infolog" | /usr/sbin/cstm | grep "CPU Module"
PA 8200 CPU Module 5.1
d3:/wrk 108 >
Or with Perl:
a5:/wrk 108 > perl -MUnix::Processors -le'print join"\t",$_->id,$_->state,$_->type,$_->clock for @{Unix::Processors->new()->processors}'
0 online HP PA-RISC 2.0 750
1 online HP PA-RISC 2.0 750
a5:/wrk 109 >
Some give getconf MACHINE_TYPE as answer, but it won't work on HP-UX 10.20. model will.
The sched.models on the sam path is usually more up to date than the one in langtools
What is my CPU speed?
d3:/ 103 # echo itick_per_usec/D | adb -k /stand/vmunix /dev/mem
itick_per_usec:
itick_per_usec: 240
d3:/ 104 #
Or with Perl:
a5:/wrk 108 > perl -MUnix::Processors -le'print join"\t",$_->id,$_->state,$_->type,$_->clock for @{Unix::Processors->new()->processors}'
0 online HP PA-RISC 2.0 750
1 online HP PA-RISC 2.0 750
a5:/wrk 109 >
-->8---
My HP ITRC site pages can be found at
Singapore https://www.beepz.com/personal/merijn/
Rotterdam http://www.cmve.net/~merijn/
Seattle http://www.hpux.ws/merijn/
Enjoy, have FUN! H.Merijn
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-17-2004 05:12 AM
04-17-2004 05:12 AM
Re: Processor information on HP-UX
# hpmem
HP-UX pc0004 B.11.11 U 9000/800 2504392628 unlimited-user license
CPU Count: 6
CPU Speed: 750 MHz
CPU HW Support: 64-bit
Kernel Support: 64-bit
RAM Size: 10080 MB
bufpages: 806 MB
maxuprc: 800
maxvgs: 128
maxfiles: 2048
max_thread_proc: 256
nfile: 189100
nflock: 1200
nproc: 2560
ninode: 16384
shmmax: 1073741824
shmmni: 256
dbc_max_pct: 8
Rgds...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-17-2004 11:37 AM
04-17-2004 11:37 AM
Re: Processor information on HP-UX
If you have online diagnostics installed on your system then stm will give you all the information need about your system.
You can get the number of processor, type, speed, etc..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-18-2004 08:20 PM
04-18-2004 08:20 PM
Re: Processor information on HP-UX
Then use #model command. The last two digits gives your the Speed of the Processor. e.g. if it is "44" then the processor speed is 440MHz
Hope this satisfies U.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-18-2004 08:56 PM
04-18-2004 08:56 PM
Re: Processor information on HP-UX
cstm is the better choice for serial numbers and a good overview of drivers bound.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-18-2004 09:40 PM
04-18-2004 09:40 PM
Re: Processor information on HP-UX
# echo "selclass qualifier cpu;info;wait;infolog" | cstm
You can substitute cpu for memory and various other components and gives heaps of information. Number of CPU's, MHz rating and of course firmware revision.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-18-2004 11:01 PM
04-18-2004 11:01 PM
Re: Processor information on HP-UX
You can use the "sam" tool to see the information about the processors:
#sam
Performance Monitors --> SAM System Properties
Best regardes,
Joel
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-19-2004 12:49 PM
04-19-2004 12:49 PM