- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: diagnostics
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
08-23-2001 05:55 AM
08-23-2001 05:55 AM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-23-2001 06:20 AM
08-23-2001 06:20 AM
Re: diagnostics
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-23-2001 06:24 AM
08-23-2001 06:24 AM
Re: diagnostics
use swapinfo -a for your swap sape information.
use folloing for your physical memory
echo phys_mem_pages/D | adb /stand/vmunix /dev/kmem
Sachin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-23-2001 06:24 AM
08-23-2001 06:24 AM
Re: diagnostics
echo "selclass qualifier memory; info; wait; infolog" | cstm > /tmp/meminfo
nancy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-23-2001 06:29 AM
08-23-2001 06:29 AM
Re: diagnostics
On a 10.X machine you could run
echo physmem/D | adb -k /stand/vmunix /dev/kmem
On a 11.X machine,
echo phys_mem_pages/D | adb -k /stand/vmunix /dev/kmem
Or you could run "/usr/sam/lbin/getmem" (returns the amount of memory in MB)
You need to be root to run dmesg or the above command
-HTH
Ramesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-23-2001 06:32 AM
08-23-2001 06:32 AM
Re: diagnostics
If you have glance software installed, Press m (memory) in main menu to get details about total memory and memory in use.
You also will be able to use cstm to find out details about physical memory installed in your system.
#cstm
cstm>map
cstm>sel dev
cstm>il (This will show you details of memory installed).
Thanks.
Prashant Deshpande.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-23-2001 06:48 AM
08-23-2001 06:48 AM
SolutionTo know the Physical memory you have the following ways
1. SAM-->Performance Monitor ---> System Properties --> Memory.
2. Glance
3. echo phys_mem_pages/D | adb /stand/vmunix /dev/kmem
4. dmesg | grep Phy ( incase dmesg doent work then either you dont it as a root or the dmesg is not working properly )
You can also try
cat /var/adm/syslog/OLDsyslog.log | grep Phy incase your dmesg doesnt work.
Manoj Srivastava
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-24-2001 01:23 AM
08-24-2001 01:23 AM
Re: diagnostics
Are U running as a normal user..
dmesg has to read from /dev/kmem which might not be readable by a normal user..
This is just a guess as right now I cannot go for checking it..
Make sure U are running as root..
But if U only need to find out the amount of memory..
dmesg cannot always help it out as it can be overrided by further kernel messages..
so go for
# /usr/sam/lib/getmem
# echo phys_mem_pages/D |
adb -k /stand/vmunix /dev/kmem