- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- checking processors details
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
06-27-2004 03:14 AM
06-27-2004 03:14 AM
i'm looking for commands to check proccesors details (number of processor, speed etc) in hpux 11 and 11i systems.
i'd like to get more then one way to apply this task.
thanks
Itai
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-27-2004 03:19 AM
06-27-2004 03:19 AM
Re: checking processors details
dmesg
Regds,
Kaps
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-27-2004 03:32 AM
06-27-2004 03:32 AM
Re: checking processors details
not sure of the syntax at the moment but it is something like
cstm "selclass cpu;info;infolog"
i'll have to boot up a system to get you exact syntax
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-27-2004 03:44 AM
06-27-2004 03:44 AM
Re: checking processors details
echo "selclass qualifier cpu;info;wait;infolog" | /usr/sbin/cstm
can do the same for other things by specifing another qualifier, such as
selclass qualifier memory for memory
selclass qualifier all for lots of stuff
selclass qualifier disk, etc
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-27-2004 04:08 AM
06-27-2004 04:08 AM
Re: checking processors details
#echo "processor_count/D" | adb -k /stand/vmunix /dev/mem
ioscan -fnC processor | grep -c processor
sar -Mu 1 1 | awk 'END {print NR-5}'
and
echo "itick_per_tick/D" | adb -k /stand/vmunix /dev/kem | tr "\012" " " | awk '{print $3}'
#divide by 10000 to get cpu speed in MHz
echo "processor_count/D" | adb -k /stand/vmunix /dev/kem | tr "\012" " " | awk '{print $3}'
echo "memory_installed_in_machine/D" | adb -k /stand/vmunix /dev/kem | tr "\012" " " | awk '{print $3}'
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-27-2004 04:36 AM
06-27-2004 04:36 AM
Re: checking processors details
where can i read about ctsm?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-27-2004 05:16 AM
06-27-2004 05:16 AM
SolutionSee the links below for help on CSTM.
http://docs.hp.com/cgi-bin/otsearch/getfile?id=/hpux/onlinedocs/diag/stm/sth_cstm.htm&searchterms=cstm&queryid=20040627-110829
http://docs.hp.com/cgi-bin/otsearch/getfile?id=/hpux/onlinedocs/diag/stm/stt_ccomm.htm&searchterms=cstm&queryid=20040627-111533
Hope that helps.
Regards,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-27-2004 05:21 AM
06-27-2004 05:21 AM
Re: checking processors details
You can get complete information on Diagnostics from this URL.
http://docs.hp.com/hpux/diag/index.html
You may also want to try SysInfo, cfg2html to get good summary of your system. See if you have /opt/ignite/bin/print_manifest. If so, run it and see if it gives you the required information.
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-28-2004 04:55 AM
06-28-2004 04:55 AM
Re: checking processors details
root:# ioscan -fnC processor
Class I H/W Path Driver S/W State H/W Type Description
===================================================================
processor 0 160 processor CLAIMED PROCESSOR Processor
processor 1 166 processor CLAIMED PROCESSOR Processor
root:ecom2# model
9000/800/L2000-44
/usr/local/bin
root:# uname -m
9000/800
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-28-2004 07:49 AM
06-28-2004 07:49 AM
Re: checking processors details
# hpmem
HP-UX pc0003 B.11.11 U 9000/800 2504392627 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
06-28-2004 06:48 PM
06-28-2004 06:48 PM
Re: checking processors details
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-28-2004 06:54 PM
06-28-2004 06:54 PM
Re: checking processors details
a5:/ 101 # ux
a5 HP-UX 11.00/64 U 9000/800/A500-7X/64 PA8700/750(2) pa-2.0 2048 Mb
a5:/ 102 #
And it contains all the knowledge you need to know. The FAQ link has much more info
Enjoy, Have FUN! H.Merijn
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-28-2004 07:13 PM
06-28-2004 07:13 PM
Re: checking processors details
We can get the processor count and binding status with the mpsched -s and mpsched -q command executions.
We can get the CPU bits and model with uname -i and getconf (CPU_CHIP_TYPE,HW_CPU_SUPP_BITS)
We can use machinfo command to get all machine informations with the CPU informations.
Regards,
Muthukumar.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-29-2004 08:03 AM
06-29-2004 08:03 AM
Re: checking processors details
For no of processor #top
Other commands
#ioscan
#dmesg
for finding the whether OS is 32 or 64 bit
#getconf KERNEL_BITS
Thanks and regards
Shine
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-29-2004 09:33 AM
06-29-2004 09:33 AM
Re: checking processors details
Did you get the hpmem script? It was attached to my post above.
Here's another command as well that tells you the PA CPU Model...:
/usr/sbin/diag/contrib/pdcinfo -no_banner
Rgds...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-29-2004 03:30 PM
06-29-2004 03:30 PM
Re: checking processors details
i didn't have the chance to check it yet.