- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: How to find RAM size in HPUX 11.23?
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
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
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-02-2006 04:35 PM
тАО04-02-2006 04:35 PM
Does any one know how to find size of RAM in the server running HPUX 11.23?
I am interested in finding in batch mode, not using SAM.
I have checked HP FAQ and question 8.32 describe the adb command. It works well for 11.00 and 11.11 but does work for 11.23
Any one has cracked adk command option for hpux 11.23?
Navin
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-02-2006 04:43 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-02-2006 04:47 PM
тАО04-02-2006 04:47 PM
Re: How to find RAM size in HPUX 11.23?
You can get these information from ,
# machinfo
# /opt/ignite/bin/print_manifest
# sam --> Performance Monitors --> System Properties --> Memory
-Arun
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-02-2006 05:34 PM
тАО04-02-2006 05:34 PM
Re: How to find RAM size in HPUX 11.23?
Thanks for the commands.
1. The command /usr/contrib/bin/machinfo works fine on hpux 11.23 with IA64. I could not find machinfo command on hpux 11.23 PA-RISC? Any idea from where can I download machinfo for hpux 11.23?
2. The adb command works great with hpux 11.23 IA64, but not with hpux 11.23 PA-RISC?
It seems that hpux 11.23 has different version for PA and IA?
Navin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-02-2006 05:39 PM
тАО04-02-2006 05:39 PM
Re: How to find RAM size in HPUX 11.23?
"machinfo" is not available in 11.23 PA. It is only for IA-64. You can use "/opt/ignite/bin/print_manifest" or SAM to get the information. That should be easier way.
-Arun
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-02-2006 05:40 PM
тАО04-02-2006 05:40 PM
Re: How to find RAM size in HPUX 11.23?
Hello Naveen,
Try this
dmesg |grep Physical
This list the total memory,locked memory and available memory
cheers!!
sysadm
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-02-2006 11:26 PM
тАО04-02-2006 11:26 PM
Re: How to find RAM size in HPUX 11.23?
dmesg will show u and swap -a, vmstat, etc
thanks
siva
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-03-2006 12:29 AM
тАО04-03-2006 12:29 AM
Re: How to find RAM size in HPUX 11.23?
what about :
# echo "selclass qualifier Memory; info ; wait ; il" | cstm | grep "Total Configured Memory"
Total Configured Memory: 65536 MB
if OnlineDiag is installed.
rgds
HGH
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-03-2006 11:00 AM
тАО04-03-2006 11:00 AM
Re: How to find RAM size in HPUX 11.23?
The best options for 11.23 are:
1. IA system: /usr/contrib/bin/machinfo | grep "Memory"
or
echo "p phys_mem_pages/jd" | adb /stand/vmunix /dev/kmem
or
echo "phys_mem_pages/2d" | adb /stand/vmunix /dev/kmem
2. On a system where Ignite-UX is installed:
/opt/ignite/bin/print_manifest
3. still trying to find the command of hpux 11.23 on PA-RISC system.
4. On a system where OnlineDiag is installed
# echo "selclass qualifier Memory; info ; wait ; il" | cstm | grep "Total Configured Memory"
5. I cannot rely on dmesg output because the Memory size output may not be available.
Regards
Navin