- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- vmstat (al,os ......)
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-25-2006 11:47 PM
03-25-2006 11:47 PM
vmstat (al,os ......)
how can I undersatand what is (al , os ...)
mean from the vmstat command .
else the man vmstat,
please advise I want to know how the system memory is used,
many thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-26-2006 06:51 AM
03-26-2006 06:51 AM
Re: vmstat (al,os ......)
vmstat measures use of virtual memory.
Virtual memory is disk that is used to swap processes from memory to disk when there is more need for memory than memory.
With memory prices low, the ideal system never actually pages to disk using vm, it reserves memory for swap but never uses it.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-26-2006 01:31 PM
03-26-2006 01:31 PM
Re: vmstat (al,os ......)
Typical output of vmstat:
procs -----------memory---------- ---swap-- -----io---- --system-- ----cpu----
r b swpd free inact active si so bi bo in cs us sy id wa
1 0 604916 115680 62476 278680 6 4 2 2 1 1 24 9 62 5
of
procs -----------memory---------- ---swap-- -----io---- --system-- ----cpu----
r b swpd free buff cache si so bi bo in cs us sy id wa
1 33 624408 7508 5220 27916 6 4 2 2 1 1 24 9 62 5
(this will look screwey, damn lack of fixed-width fonts!).
These are all detailed in the man page.
I use this output with MRTG to map current memory usage.
Other ways to get the current memory usage are to use 'free', or to directly 'cat /proc/meminfo'. All of these tools look at that for their details anyway.
'free' (which is basically the same as the top section of the 'top' command) shows things the clearest.
Total memory. Free memory. Total swap. Free swap.
Be aware that the Buffers and Cache values are automatically assigned, and change regularly. If you have a system that is using lots of swap, and the Buffers and Cache values aren't that big, then definately get more memory.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-26-2006 05:37 PM
03-26-2006 05:37 PM
Re: vmstat (al,os ......)
http://www.tech-recipes.com/solaris_system_administration_tips165.html
to interpret output.
--
Muthu
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-26-2006 05:39 PM
03-26-2006 05:39 PM
Re: vmstat (al,os ......)
I mean when I issue the command
% vmstat -P
the output what means ( al,os ...)
thanks.