- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Memory Usage vs Free 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
03-26-2004 06:28 AM
03-26-2004 06:28 AM
IS there a way for me to find out the current system physical memory usage and free memory ?
Thanks,
Nikee
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-26-2004 06:31 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-26-2004 06:32 AM
03-26-2004 06:32 AM
Re: Memory Usage vs Free Memory
The best way is to use a tool called glance. If you do not have it installed ( 60 days free ) you could use top, vmstat, ps, swapinfo but those tools do not give you a clear output.
HTH,
Gideon
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-26-2004 06:33 AM
03-26-2004 06:33 AM
Re: Memory Usage vs Free Memory
# echo "freemem/D" | adb -k /stand/vmunix /dev/kmem
The output is the free memory in pages. Multiply the resulting number with 4 to get the free memory in Kbytes.
# echo "phys_mem_pages/D" | adb -k /stand/vmunix /dev/kmem
The output is the total memory in pages.Multiply the resulting number with 4 to get the free memory in Kbytes.
Used memory=Total memory-Free memory
Thanks,
Sundar.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-27-2004 07:48 PM
05-27-2004 07:48 PM
Re: Memory Usage vs Free Memory
Example on a A400 server (display containts tab) :
Physical memory usage summary (in pages):
Physmem = 131072 Available physical memory:
Freemem = 57764 Free physical memory
Used = 73308 Used physical memory:
System = 46487 by kernel:
Static = 6465 for text and static data
Dynamic = 20635 for dynamic data
Bufcache = 19387 for file-system buffer cache
User = 28946 by user processes
Uarea = 1136 for thread uareas
Disowned = 256 disowned pages
Olivier.