- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Find out CPU, Speed and memory in B.10.10
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
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
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
тАО04-05-2002 02:59 PM
тАО04-05-2002 02:59 PM
Your help highly appreciated?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-05-2002 03:24 PM
тАО04-05-2002 03:24 PM
Re: Find out CPU, Speed and memory in B.10.10
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-05-2002 03:49 PM
тАО04-05-2002 03:49 PM
Solution# echo physmem/D | adb /stand/vmunix /dev/kmem
==> gives total memory
# echo itick_per_usec/D | adb /stand/vmunix /dev/mem
==> gives processor speed
# echo runningprocs/D | adb /stand/vmunix /dev/mem
=> gives number of processor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-05-2002 03:54 PM
тАО04-05-2002 03:54 PM
Re: Find out CPU, Speed and memory in B.10.10
Regds
Ramesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-05-2002 04:01 PM
тАО04-05-2002 04:01 PM
Re: Find out CPU, Speed and memory in B.10.10
# echo itick_per_usec/D | adb /stand/vmunix /dev/kmem
itick_per_usec:
itick_per_usec:
To find the model number of the processor, execute this:
#/usr/bin/model
9000/819/K200
For physical memory:
echo physmem/D | adb /stand/vmunix /dev/kmem
physmem:
physmem: 24576
Hope that helps.
Ross Martin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-05-2002 04:02 PM
тАО04-05-2002 04:02 PM
Re: Find out CPU, Speed and memory in B.10.10
#sam
SAM Performance Monitors ->
Other Disk and Terminal Activity
glance GlancePlus (character mode)
Other Inter-Process Communication Facility Status
Other Processes With Highest CPU Usage
Other System Activity
SAM System Properties
Other Virtual Memory Activity
and
SAM Process Management ->
SAM Process Control
Regards
Steve
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-05-2002 04:07 PM
тАО04-05-2002 04:07 PM
Re: Find out CPU, Speed and memory in B.10.10
echo physmem/D | adb -k /stand/vmunix /dev/kmem
How many MB/GB of memory my system is having?
Regds
Ramesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-05-2002 04:07 PM
тАО04-05-2002 04:07 PM
Re: Find out CPU, Speed and memory in B.10.10
Ross and SK
I like the cpu speed check,
when I run it on one of our new systems hp11
I get
Error from elf64_getehdr(application core file)
Not an Elf file: No Elf header
itick_per_usec:
itick_per_usec: 440
Can you explain the error? Is the command not for v11
also 440 MHZ seems pretty naf, would you agree
Steve
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-05-2002 04:10 PM
тАО04-05-2002 04:10 PM
Re: Find out CPU, Speed and memory in B.10.10
echo physmem/D | adb -k /stand/vmunix /dev/kmem
So how many MB/GB memory i have?
Regds
Ramesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-05-2002 04:24 PM
тАО04-05-2002 04:24 PM
Re: Find out CPU, Speed and memory in B.10.10
261888 * 4 = 1,047,552 KBytes
which should match with /etc/dmesg output "Physical:", so you got 1GB memory.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-05-2002 04:35 PM
тАО04-05-2002 04:35 PM
Re: Find out CPU, Speed and memory in B.10.10
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-05-2002 06:40 PM
тАО04-05-2002 06:40 PM
Re: Find out CPU, Speed and memory in B.10.10
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-06-2002 01:23 AM
тАО04-06-2002 01:23 AM
Re: Find out CPU, Speed and memory in B.10.10
dmesg|grep Physical|mem=`awk '{print $2}'`; totmem=$(( $mem/1024 ));echo $totmem Megabytes
Note there are grave (back tick) around the awk statement and don't forget the space between the (( $mem and trailing 1024 )). It is best to cut and paste it.