- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Processor Speed ?
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
03-19-2003 10:55 PM
03-19-2003 10:55 PM
I need to determine what speed the processor is running at on our server.
Is there a command which will display this information ?
Thanks guys !
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-19-2003 11:00 PM
03-19-2003 11:00 PM
Re: Processor Speed ?
You can use:
# echo itick_per_usec/D | adb -k /stand/vmunix dev/kmem
or
# echo itick_per_tick/D | adb -k /stand/vmunix dev/kmem
Regards,
James.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-19-2003 11:02 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-19-2003 11:12 PM
03-19-2003 11:12 PM
Re: Processor Speed ?
try:
HZ=`echo itick_per_tick/D | adb -k /stand/vmunix /dev/kmem|tail -1|cut -f2`
((MHZ=$HZ/10000))
echo $MHZ
hth
Yogeeraj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-19-2003 11:40 PM
03-19-2003 11:40 PM
Re: Processor Speed ?
Out of interest I tried the command line option that you all supplied, but got back some different errors....
[A583S002:/.root] echo itick_per_usec/D | adb -k /stand/vmunix dev/kmem
cannot open `dev/kmem'
itick_per_usec:
itick_per_usec:
data address not found
[A583S002:/.root] echo itick_per_usec/D | adb /stand/vmunix/dev/mem
cannot open `/stand/vmunix/dev/mem'
symbol not found
[A583S002:/.root]
But thats probably just me typing it in wrong !
Anyway thanks very much to all of you, for the taking the time to help, much appreciated !
Maybe someday (after a lot more practice) I will be able to help you with something !
Kind Regards
Kevin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-19-2003 11:48 PM
03-19-2003 11:48 PM
Re: Processor Speed ?
Yup, first time you missed a / before the dev, second time no space between vmunix and /dev.
Cheers,
James.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-19-2003 11:50 PM
03-19-2003 11:50 PM
Re: Processor Speed ?
Here is the correct syntax:
# echo itick_per_usec/D | adb -k /stand/vmunix /dev/kmem
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-20-2003 12:02 AM
03-20-2003 12:02 AM
Re: Processor Speed ?
Second time no space in between /stand/vmunix and /dev/kmem.
If still a problem check the files using
#ls -l /dev/kmem
#ls -l /dev/mem
It should be like
crw-r----- 1 bin sys 3 0x000001 Oct 6 2000 /dev/kmem
crw-r----- 1 bin sys 3 0x000000 Oct 6 2000 /dev/mem
Revert on the same.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-20-2003 02:26 AM
03-20-2003 02:26 AM
Re: Processor Speed ?
It not only answers your questions, but tries very hard to answer more of these questions.
Enjoy, have FUN! H.Merijn