- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- 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
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-31-2005 06:37 AM
08-31-2005 06:37 AM
What are the commands to find out the physical memory on the hpux 11:00 and hpux 11.11 ?
Thanks,
Shiv
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-31-2005 06:40 AM
08-31-2005 06:40 AM
Solutionecho "phys_mem_pages/D"|adb -k /stand/vmunix /dev/mem
echo memory_installed_in_machine/D | adb -k /stand/vmunix /dev/kmem
print_manifest
echo "selclass qualifier memory;info;wait;infolog" | cstm
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-31-2005 06:40 AM
08-31-2005 06:40 AM
Re: physical memory
My favorite:
echo "selclass qualifier memory;info;wait;infolog" | cstm > /tmp/meminfo
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-31-2005 06:47 AM
08-31-2005 06:47 AM
Re: physical memory
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-31-2005 06:48 AM
08-31-2005 06:48 AM
Re: physical memory
echo "selclass type memory;info;wait;infolog" | cstm
On an Itanium system;
/usr/contrib/bin/machinfo
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-31-2005 05:11 PM
08-31-2005 05:11 PM
Re: physical memory
the same for both version.
refer to what u posted:
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=943674
regards.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-31-2005 05:18 PM
08-31-2005 05:18 PM
Re: physical memory
Best way is using OnlineDiag tool.
In "stm" or "cstm" tool shows details information about memory like.
What is Physical Memory installaed.
How many slots are occupied with what capacity modules like 128MB/256MB/512MB/1GB.
For high level info
dmesg|grep Ph
Some time dmesg cannot retain these message,if any other message here. Then,
grep -i Phy /var/adm/syslog/syslog.log
Regards,
Rajesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-31-2005 05:36 PM
08-31-2005 05:36 PM
Re: physical memory
As an addition the other replies;
Go to SAM;
Performance Monitor-->System Properties
Good Luck,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-31-2005 05:40 PM
08-31-2005 05:40 PM
Re: physical memory
#print_manifest|egrep -i memory
Good Luck,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-31-2005 06:02 PM
08-31-2005 06:02 PM
Re: physical memory
You can also try ,
1. # dmesg | grep -E "phy | mem"
2. # cat /var/adm/syslog/syslog.log | grep -i Physical
3. # echo "selclass qualifier memory;info;wait;infolog" | /usr/sbin/cstm
4. #/opt/ignite/bin/print_manifest | grep -i Memory
Cheers ,
Raj.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-31-2005 06:06 PM
08-31-2005 06:06 PM
Re: physical memory
1. top
2. dmesg | grep -i phys
3. sam -> performance monitor -> system properties -> memory
hth.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-01-2005 01:14 AM
09-01-2005 01:14 AM
Re: physical memory
1. dmesg |grep PHYSICAL
2. top
3. cstm>map all >info > il
are few ways to get server physical memory
Regards
Mahesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-04-2005 07:08 PM
09-04-2005 07:08 PM
Re: physical memory
or you can use sam to find out the physical memory --> Performance Monitors --> System Properties
-yut-