HPE GreenLake Administration
- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: How to get the detail utilised system physical...
Operating System - HP-UX
1837897
Members
3307
Online
110123
Solutions
Forums
Categories
Company
Local Language
back
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
back
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
Blogs
Information
Community
Resources
Community Language
Language
Forums
Blogs
Go to solution
Topic Options
- 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
06-02-2010 09:36 PM
06-02-2010 09:36 PM
Hi,
I want to know how to get the detail utilised system physical memory information.
Please do clarify how to read this information from SYSLOG as below for lockable and available memory.
May 8 13:47:23 server1 vmunix: Memory Information:
May 8 13:47:23 server1 vmunix: physical page size = 4096 bytes, logical page size = 4096 bytes
May 8 13:47:23 server1 vmunix: Physical: 33554432 Kbytes, lockable: 26058632 Kbytes, available: 29908228 Kbytes
The system is having physical memory of 32GB. But in syslog it is showing 26GB as lockable and 29GB as available ...If i ADD both of this memory (lockable + available)then it is more then the physical memory in system.
And also how to read the SWAPINFO -MAT output for physical memory available and SWAP memory available...
server1:[/]# swapinfo -mat
Mb Mb Mb PCT START/ Mb
TYPE AVAIL USED FREE USED LIMIT RESERVE PRI NAME
dev 8192 0 8192 0% 0 - 1 /dev/vg00/lvol2
dev 4000 0 4000 0% 0 - 1 /dev/vg00/lvswap1
dev 4000 0 4000 0% 0 - 1 /dev/vgtcpfs1/lvswap2
dev 4000 0 4000 0% 0 - 1 /dev/vgtcpfs2/lvswap3
reserve - 16583 -16583
memory 25498 2714 22784 11%
total 45690 19297 26393 42% - 0 -
Thanks,
Narendra
I want to know how to get the detail utilised system physical memory information.
Please do clarify how to read this information from SYSLOG as below for lockable and available memory.
May 8 13:47:23 server1 vmunix: Memory Information:
May 8 13:47:23 server1 vmunix: physical page size = 4096 bytes, logical page size = 4096 bytes
May 8 13:47:23 server1 vmunix: Physical: 33554432 Kbytes, lockable: 26058632 Kbytes, available: 29908228 Kbytes
The system is having physical memory of 32GB. But in syslog it is showing 26GB as lockable and 29GB as available ...If i ADD both of this memory (lockable + available)then it is more then the physical memory in system.
And also how to read the SWAPINFO -MAT output for physical memory available and SWAP memory available...
server1:[/]# swapinfo -mat
Mb Mb Mb PCT START/ Mb
TYPE AVAIL USED FREE USED LIMIT RESERVE PRI NAME
dev 8192 0 8192 0% 0 - 1 /dev/vg00/lvol2
dev 4000 0 4000 0% 0 - 1 /dev/vg00/lvswap1
dev 4000 0 4000 0% 0 - 1 /dev/vgtcpfs1/lvswap2
dev 4000 0 4000 0% 0 - 1 /dev/vgtcpfs2/lvswap3
reserve - 16583 -16583
memory 25498 2714 22784 11%
total 45690 19297 26393 42% - 0 -
Thanks,
Narendra
Solved! Go to Solution.
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-02-2010 11:13 PM
06-02-2010 11:13 PM
Re: How to get the detail utilised system physical memory information.
>> If i ADD both of this memory (lockable + available)
You can't add lockable or available memory to server. you are allowed to add physical memory if your application needs more.
check below link to get more details.
http://forums11.itrc.hp.com/service/forums/questionanswer.do?admit=109447626+1275548813015+28353475&threadId=1413665
you can use tools like glance, gpm or kmeminfo to get better memory details from system.
some useful tools available on..
http://www.hpux.co.kr/tools/IA/
Gudluck
Prasanth
You can't add lockable or available memory to server. you are allowed to add physical memory if your application needs more.
check below link to get more details.
http://forums11.itrc.hp.com/service/forums/questionanswer.do?admit=109447626+1275548813015+28353475&threadId=1413665
you can use tools like glance, gpm or kmeminfo to get better memory details from system.
some useful tools available on..
http://www.hpux.co.kr/tools/IA/
Gudluck
Prasanth
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-03-2010 02:02 AM
06-03-2010 02:02 AM
Solution
>If I ADD both of this memory (lockable + available) then it is more ...
Because these are not disjoint states.
>how to read the swapinfo -tam output for physical memory available and SWAP memory available...
reserve - 16583 -16583
memory 25498 2714 22784 11%
total 45690 19297 26393 42%
This says you have 26 Gb swap available and only 22 Gb pseudo-swap. You have reserved 16 Gb of your device swap.
>Prasanth: You can't add lockable or available memory to server.
You can add any numbers you want but whether they make sense or not is something different.
Because these are not disjoint states.
>how to read the swapinfo -tam output for physical memory available and SWAP memory available...
reserve - 16583 -16583
memory 25498 2714 22784 11%
total 45690 19297 26393 42%
This says you have 26 Gb swap available and only 22 Gb pseudo-swap. You have reserved 16 Gb of your device swap.
>Prasanth: You can't add lockable or available memory to server.
You can add any numbers you want but whether they make sense or not is something different.
The opinions expressed above are the personal opinions of the authors, not of Hewlett Packard Enterprise. By using this site, you accept the Terms of Use and Rules of Participation.
Company
Events and news
Customer resources
© Copyright 2025 Hewlett Packard Enterprise Development LP