- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: CPU 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
02-23-2005 07:33 PM
02-23-2005 07:33 PM
CPU details
1) CPU type
2) CPU Frequency.
I am on hpux 11.0
Please advise.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-23-2005 07:39 PM
02-23-2005 07:39 PM
Re: CPU details
SAM can provide that info.
Performance Monitor --> System Properties
Regards
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-23-2005 07:41 PM
02-23-2005 07:41 PM
Re: CPU details
or from the command line:
CPU Frequency:
echo itick_per_usec/D | adb -k /stand/vmunix /dev/mem
Number of processors:
echo runningprocs/D | adb -k /stand/vmunix /dev/mem
Regards
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-23-2005 07:50 PM
02-23-2005 07:50 PM
Re: CPU details
grep -i $(model | tr "/" " " | awk '{print $NF}') /usr/sam/lib/mo/sched.models | awk '{print $NF}'
Processors frequency :
echo itick_per_usec/D | adb -k /stand/vmunix /dev/mem | tail -1 | awk '{print $NF}'
For more information, see on procura's website :
http://mirrors.develooper.com/hpux/#FAQ
Regards,
Fred
"Reality is just a point of view." (P. K. D.)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-23-2005 07:59 PM
02-23-2005 07:59 PM
Re: CPU details
You can try this if the "ts90" file exist.
ex.
cat /var/tombstones/ts90
Hope this help you .
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-23-2005 08:05 PM
02-23-2005 08:05 PM
Re: CPU details
To know the processor model do this
First get the system model using model
It will display liike this â 9000/800/L1500-7xâ
Then grep for the model in the models.
Eg:-
#grep L1500-7x /usr/sam/lib/mo/sched.models
L1500-7x 2.0 PA8700
# grep K360 /usr/sam/lib/mo/sched.models
K360 2.0 PA8000
To get the processor speed
echo itick_per_tick/D | adb $kernel /dev/kmem
In
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-23-2005 08:06 PM
02-23-2005 08:06 PM
Re: CPU details
Following command will give the model of Server.
#model
9000/800/L2000-5X
Following Output of the command will be your CPU speed.
#echo itick_per_usec/D | adb -k /stand/vmunix /dev/kmem | awk '{print $2}'
HTH
Regards,
Syam
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-23-2005 10:27 PM
02-23-2005 10:27 PM
Re: CPU details
assigning points is useful for future searches in ITRC to know what reply helped you better. That is the main goal of points in this forum.
Then I ask you to assign points to people that helped you now and in your previous threads.
Thanks for your colalboration!
Best regards,
Fabio
P.S.: no points for my post please....
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-24-2005 12:38 AM
02-24-2005 12:38 AM
Re: CPU details
You can get the answer by using STM
/Michael
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-01-2005 05:31 PM
03-01-2005 05:31 PM
Re: CPU details
Thanks for your help. And i have assigned the points too. Cheers