- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- CPU detection
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-14-2000 09:06 PM
03-14-2000 09:06 PM
CPU detection
I'm trying to find out what kind of CPU I'm using. I do a IOSCAN -f and don't
find what I went. Could you tell me the command to find the amount of memory
in that box and the number of cpu and the speed of that cpu. Also is there a
command that will tell me wich K-class I'm using.
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-14-2000 10:11 PM
03-14-2000 10:11 PM
Re: CPU detection
top
To determine processor speed:
- For HP-UX 9.x:
echo itick_per_usec/D | adb -k /hp-ux /dev/mem,
- For HP-UX 10.0 and 10.01:
echo itick_per_usec/D | adb -k /stand/vmunix/dev/mem
- For HP-UX 10.10 and greater, you have to modify the above command, or it will
get data address not found or no such address errors.
echo itick_per_usec/D | adb -k /stand/vmunix dev/mem
- To find the model number of the processor, execute this line:
/usr/bin/model
see DOC KBRC00000327 (How to find the number of processors, speed, and model
number )
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-15-2000 04:50 PM
03-15-2000 04:50 PM
Re: CPU detection
/usr/bin/model command that Alex talked about.
Then look in /usr/lib/sched.models (for hpux 10.xx)
or /usr/sam/lib/mo/sched.models (for hpux 11.xx).
Note all PA8000 and above CPUs are 64 bit.
An easy way to find the amount of physcial memory
in a system is:
grep Physical /var/adm/syslog/syslog.log
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-15-2000 06:29 PM
03-15-2000 06:29 PM
Re: CPU detection
is to run
/usr/sam/lbin/getmem
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-16-2000 01:48 AM
03-16-2000 01:48 AM
Re: CPU detection
The getmem command does not report accurate values for systems with more than
512 Meg of memory. Grepping the value out of syslog is the best way to go, or
else logging dmesg into a file and pulling it from there.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-16-2000 10:08 PM
03-16-2000 10:08 PM
Re: CPU detection
/var/tombstones, vi or print any of the ts** files, and also run dmesg.
Cheers!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-16-2000 10:09 PM
03-16-2000 10:09 PM
Re: CPU detection
/var/tombstones, vi or print any of the ts** files, and also run dmesg for
Physical mem check.
Cheers!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-20-2000 01:43 PM
03-20-2000 01:43 PM
Re: CPU detection
|adb -k /stand/vmunix /dev/mem?
thanks
allan