- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: cpu & physical memory
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
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
04-16-2002 04:57 AM
04-16-2002 04:57 AM
besides running glance, is there any other way to tell the amount of cpu and physical memory in a L-class server. Thanks for your time and points will be given.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-16-2002 04:58 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-16-2002 05:00 AM
04-16-2002 05:00 AM
Re: cpu & physical memory
Doesn't 'top -d1' give you the output you need?
grt, Emiel
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-16-2002 05:02 AM
04-16-2002 05:02 AM
Re: cpu & physical memory
a) top : will give you 'how may CPUs'
b) SAM : Resource management, system properties will give you the CPU speed
c) stm : will give you all hardware details, CPU, memory, speed etc
d) dmesg : will give you memory information
e) swapinfo : swap information
f) ioscan -fn : device informations
Frank
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-16-2002 05:04 AM
04-16-2002 05:04 AM
Re: cpu & physical memory
Regards,
John
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-16-2002 05:08 AM
04-16-2002 05:08 AM
Re: cpu & physical memory
# echo "selclass qualifier memory;info;wait;infolog"|cstm > /tmp/meminfo
# echo "selclass qualifier cpu;info;wait;infolog"|cstm > /tmp/cpuinfo
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-16-2002 05:09 AM
04-16-2002 05:09 AM
Re: cpu & physical memory
For finding out the CPU and memory usage:
1) top
2) sar
3) SAM -> Performance monitors
4) swapinfo
5) ps ( process status )
To find out the actual physical memory and CPUs in the system:
1) stm
2) offline diag
3) top
4) sam
5) dmesg
6) ioscan
HTH,
Shiju
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-16-2002 05:13 AM
04-16-2002 05:13 AM
Re: cpu & physical memory
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-16-2002 12:38 PM
04-16-2002 12:38 PM
Re: cpu & physical memory
1) to get detailed info on memory, run:
/opt/perf/bin/glance -m
2) to get detailed info on cpu, run:
/opt/perf/bin/glance -c
in both cases, to quit, just hit q once.
Hai
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-16-2002 12:45 PM
04-16-2002 12:45 PM
Re: cpu & physical memory
/usr/sam/lbin/getmem
Hai
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-16-2002 12:53 PM
04-16-2002 12:53 PM
Re: cpu & physical memory
#!/bin/ksh
if [ `uname -r` = "B.11.00" ]
then
echo "phys_mem_pages/D" | adb /stand/vmunix /dev/kmem|grep phys|tail -1|awk '{print $2/256 " MB"}'
else
echo "physmem/D" | adb /stand/vmunix /dev/kmem|grep phys|tail -1|awk '{print "Memory size = " $2 / 256 " Megabytes"}'
fi
###To obtain the processor speed (MHz):
echo itick_per_usec/D|adb -k stand/vmunix /dev/kmem|awk 'NR==2 {print}'
or
echo itick_per_usec/D | /usr/bin/adb -k /stand/vmunix /dev/kmem
Richard