- 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
01-13-2003 06:08 PM
01-13-2003 06:08 PM
1. How can I check/identify my systems Processor speed?
2. How can I check/identify how many processor/s do I have in my system?
Thanks...
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-13-2003 06:12 PM
01-13-2003 06:12 PM
SolutionCheck the following
http://www1.itrc.hp.com/service/cki/docDisplay.do?docLocale=en_US&docId=200000062972855
Use top to get the no. of processors.
and
echo itick_per_usec/D | adb -k /stand/vmunix dev/mem
to get the processor speed
Srini.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-13-2003 06:16 PM
01-13-2003 06:16 PM
Re: Processor Speed
performance monitors -> system properties.
look at the processor tab, which should be the one that comes up anyways.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-13-2003 06:21 PM
01-13-2003 06:21 PM
Re: Processor Speed
echo itick_per_usec/D | adb -k /stand/vmunix dev/mem
You can get the number of processes a few ways.
top
glance
or using stm, will get you a little more info.
# "seclass qualifier cpu;info;wait;infolog" | cstm
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-13-2003 06:25 PM
01-13-2003 06:25 PM
Re: Processor Speed
# "echo selclass qualifier cpu;info;wait;infolog" | cstm
This will actually give you both, divide the processor speed by 1,000,000
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-13-2003 06:28 PM
01-13-2003 06:28 PM
Re: Processor Speed
Another way to see the number of processors is:
# echo "runningprocs/D" | adb -k /stand/vmunix /dev/kmem
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-13-2003 06:46 PM
01-13-2003 06:46 PM
Re: Processor Speed
Just to summarize...
1. 1. How can I check/identify my systems Processor speed?
# echo itick_per_usec/D | adb -k /stand/vmunix dev/mem
2. How can I check/identify how many processor/s do I have in my system?
# echo "runningprocs/D" | adb -k /stand/vmunix /dev/kmem
BTW, with command #2 I have verified that I have 2 working CPUs. But when I issued command #1 it only gives me 1 processor speed. Why?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-13-2003 06:49 PM
01-13-2003 06:49 PM
Re: Processor Speed
You only get one processor speed reported because all the CPUs must run at the same speed in an HP9000.
JP
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-15-2003 07:30 AM
01-15-2003 07:30 AM
Re: Processor Speed
We were told by HP that we could install 440mhz processors in the same machine but they would operate at 360mhz...
Is this not the case?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-15-2003 07:46 AM
01-15-2003 07:46 AM
Re: Processor Speed
Multiple processor on the same system are running at the same speed.
Hope this helps.
Regds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-15-2003 07:54 AM
01-15-2003 07:54 AM
Re: Processor Speed
You can also use,
db001:/etc# ioscan -fnkC 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
Hope it helps,
Robert-Jan.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-15-2003 08:15 AM
01-15-2003 08:15 AM
Re: Processor Speed
That still reports the same speed for every processor. Here is a small example program.
#include
#include
#include
#include
int main(int argc, char *argv[])
{
struct pst_processor st;
int id;
for (id=0; pstat_getprocessor(&st, sizeof(st), (size_t)1, id)==1; id++) {
printf("processor %d- %d clock cycles per second\n",
id, st.psp_iticksperclktick * sysconf(_SC_CLK_TCK));
}
return 0;
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-15-2003 01:31 PM
01-15-2003 01:31 PM
Re: Processor Speed
Thanks,
Mary P.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-15-2003 02:18 PM
01-15-2003 02:18 PM
Re: Processor Speed
Don't be hard on yourself, we all have days like this.
Not sure whether you're sitting at a
cstm>
prompt or not.
If so just type quit & 2 returns to get out.
If you went into cstm via the echo/pipe routine a ctrl-C should get you out. If that doesn't do it try the delete key. If that doesn't do it try the ctrl-backslash.
Rgds,
Jeff