- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Number of CPUs
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
05-29-2002 09:46 PM
05-29-2002 09:46 PM
Number of CPUs
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2002 09:54 PM
05-29-2002 09:54 PM
Re: Number of CPUs
cat /proc/cpuinfo tells you
* how many cpus
* the speed
* cpu cache size
But I guess you are using HP-UX?, since Linux doesn't have SAM.....
Regards,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2002 10:10 PM
05-29-2002 10:10 PM
Re: Number of CPUs
To see CPU utilisation for each cpu use
#sar -M 1 10
( or )
#top
regards,
U.SivaKumar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2002 10:26 PM
05-29-2002 10:26 PM
Re: Number of CPUs
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-30-2002 11:08 PM
05-30-2002 11:08 PM
Re: Number of CPUs
Do this to get your cpu speed in Mhz.
echo itick_per_usec/D |adb -k /stand/vmunix /dev/mem
regards,
U.SivaKumar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-31-2002 12:20 AM
05-31-2002 12:20 AM
Re: Number of CPUs
http://www.grc.hp.com/docs/nickel/
which runs all interesting commands like the echo ... thing that you'll never remember by heart, a quick look at the script gives you all you want, the script itself will present the return in html format.
Alternatively, there is the getconf comand (see the man) that will give you good info, also the /opt/ignite/bin/print_manifest will give you lots,
cstm/mstm/xstm can also do the same.
Later,
Bill
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-31-2002 11:02 AM
05-31-2002 11:02 AM
Re: Number of CPUs
The other for # of cpus is "ioscan -Cprocessor -f"
the echo...adb... command above should work for the speed.