HPE GreenLake Administration
- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- what are "top" output of "memory " sesction mean?
Operating System - HP-UX
1826645
Members
3420
Online
109695
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
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
07-03-2002 08:42 PM
07-03-2002 08:42 PM
what are "top" output of "memory " sesction mean?
My machine is n4000 memory is 4G
the memory section of top is
Memory: 745348K (390028K) real, 2722692K (1373776K) virtual, 647880K free Page#
1/14
Can you explain it to me?
and
the fre in vmstat mean k of pagesize ?
Thanks !!!
the memory section of top is
Memory: 745348K (390028K) real, 2722692K (1373776K) virtual, 647880K free Page#
1/14
Can you explain it to me?
and
the fre in vmstat mean k of pagesize ?
Thanks !!!
xysco
3 REPLIES 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-03-2002 09:47 PM
07-03-2002 09:47 PM
Re: what are "top" output of "memory " sesction mean?
Here is an example memory line from top output:
these is the infroamtion i got from HP
| Memory: 2080K (1672K) real, 5564K (3044K) virtual, 696K free
| ^ ^ ^ ^ ^
| | | | | |
| 1 2 3 4 5
The entries are described below:
1. Total physical memory in the system dedicated to text, data or
stack segments for all processes on the system.
2. Total physical memory for runnable processes, as opposed to
sleeping processes.
3. Total memory dedicated to text, data or stack segments for all processes
on the system. Some of this is paged out to disk (that is, not all
of this is in current physical memory.
4. Total memory for runnable processes, as opposed to sleeping or stopped
processes.
5. Physical memory the system considers to be unused and available to new
processes. When this value is low, swapping is likely to occur.
Basically top is not reporting anything about what you have available,
but rather what is being used.
To see how memory is utilized, glance can be used.
these is the infroamtion i got from HP
| Memory: 2080K (1672K) real, 5564K (3044K) virtual, 696K free
| ^ ^ ^ ^ ^
| | | | | |
| 1 2 3 4 5
The entries are described below:
1. Total physical memory in the system dedicated to text, data or
stack segments for all processes on the system.
2. Total physical memory for runnable processes, as opposed to
sleeping processes.
3. Total memory dedicated to text, data or stack segments for all processes
on the system. Some of this is paged out to disk (that is, not all
of this is in current physical memory.
4. Total memory for runnable processes, as opposed to sleeping or stopped
processes.
5. Physical memory the system considers to be unused and available to new
processes. When this value is low, swapping is likely to occur.
Basically top is not reporting anything about what you have available,
but rather what is being used.
To see how memory is utilized, glance can be used.
share the power of the knowledge
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-03-2002 09:50 PM
07-03-2002 09:50 PM
Re: what are "top" output of "memory " sesction mean?
These two postings should explain things for you.
http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x57adc8ecad09d6118ff40090279cd0f9,00.html
http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x5bcad08cc06fd511abcd0090277a778c,00.html
http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x57adc8ecad09d6118ff40090279cd0f9,00.html
http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x5bcad08cc06fd511abcd0090277a778c,00.html
Anyone for a Mutiny ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-03-2002 11:12 PM
07-03-2002 11:12 PM
Re: what are "top" output of "memory " sesction mean?
Hi
If you don't have glance - to see total , used and free memory
Pop the below in a file, set it executable and run it
#!/usr/bin/sh
let x=$(grep -i
physical: /var/adm/syslog/syslog.log | head -1 | awk '{print $7}
')/1048
let z=$(vmstat|tail -1|awk '{print $5}')*4096;let z=$z/1000000
let free=100000/$x*$z
let free=$free/1000
let free=100-$free
echo "$x Mb physical memory \n$z Mb memory free \n$free % used"
HTH
Steve
If you don't have glance - to see total , used and free memory
Pop the below in a file, set it executable and run it
#!/usr/bin/sh
let x=$(grep -i
physical: /var/adm/syslog/syslog.log | head -1 | awk '{print $7}
')/1048
let z=$(vmstat|tail -1|awk '{print $5}')*4096;let z=$z/1000000
let free=100000/$x*$z
let free=$free/1000
let free=100-$free
echo "$x Mb physical memory \n$z Mb memory free \n$free % used"
HTH
Steve
take your time and think things through
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
Support
Events and news
Customer resources
© Copyright 2025 Hewlett Packard Enterprise Development LP