<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: vmstat vs top in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/vmstat-vs-top/m-p/4002348#M96189</link>
    <description>Well if you're in such a losing battle i.e. when the system is thrashing, the one thing I can think of is to nice certain processes to ride out the storm as its usually due to some batch processing or large processing that kicks in. If that doesn't work the system will eventually crash, thus its a matter of judgement call for the given instance.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Jov</description>
    <pubDate>Thu, 17 May 2007 22:32:46 GMT</pubDate>
    <dc:creator>Jov</dc:creator>
    <dc:date>2007-05-17T22:32:46Z</dc:date>
    <item>
      <title>vmstat vs top</title>
      <link>https://community.hpe.com/t5/operating-system-linux/vmstat-vs-top/m-p/4002342#M96183</link>
      <description>Someone may explain how to match results between VMSTAT and TOP?&lt;BR /&gt;&lt;BR /&gt;vmstat shows the next&lt;BR /&gt;         procs           memory                   page                              faults       cpu&lt;BR /&gt;    r     b     w      avm    free   re   at    pi   po    fr   de    sr     in     sy    cs  us sy id&lt;BR /&gt;    1     0     0  1249634  1567471  182   59     0    0     0    0     0   1320 104945 12977   5 49 45&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;and top&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;System: htx668 Thu May 17 16:28:58 2007&lt;BR /&gt;Load averages: 0.04, 0.03, 0.04&lt;BR /&gt;284 processes: 235 sleeping, 49 running&lt;BR /&gt;Cpu states:&lt;BR /&gt;CPU   LOAD   USER   NICE    SYS   IDLE  BLOCK  SWAIT   INTR   SSYS&lt;BR /&gt; 0    0.07   0.2%   0.0%   0.2%  99.6%   0.0%   0.0%   0.0%   0.0% &lt;BR /&gt; 1    0.04   0.0%   0.0%   0.4%  99.6%   0.0%   0.0%   0.0%   0.0% &lt;BR /&gt; 2    0.05   0.0%   0.0%   3.0%  97.0%   0.0%   0.0%   0.0%   0.0% &lt;BR /&gt; 3    0.00   5.2%   0.0%   6.4%  88.4%   0.0%   0.0%   0.0%   0.0% &lt;BR /&gt;---   ----  -----  -----  -----  -----  -----  -----  -----  -----&lt;BR /&gt;avg   0.04   1.4%   0.0%   2.4%  96.2%   0.0%   0.0%   0.0%   0.0% &lt;BR /&gt;&lt;BR /&gt;Memory: 5684000K (3830848K) real, 6893300K (4889776K) virtual, 6269244K free  Page# 1/18&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;So I haven't match for any way those results :(&lt;BR /&gt;</description>
      <pubDate>Thu, 17 May 2007 16:51:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/vmstat-vs-top/m-p/4002342#M96183</guid>
      <dc:creator>vmstat vs top</dc:creator>
      <dc:date>2007-05-17T16:51:23Z</dc:date>
    </item>
    <item>
      <title>Re: vmstat vs top</title>
      <link>https://community.hpe.com/t5/operating-system-linux/vmstat-vs-top/m-p/4002343#M96184</link>
      <description>I wouldn't even try.&lt;BR /&gt;&lt;BR /&gt;Top is one of the worst utilities to use to check memory usage.</description>
      <pubDate>Thu, 17 May 2007 17:13:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/vmstat-vs-top/m-p/4002343#M96184</guid>
      <dc:creator>Patrick Wallek</dc:creator>
      <dc:date>2007-05-17T17:13:14Z</dc:date>
    </item>
    <item>
      <title>Re: vmstat vs top</title>
      <link>https://community.hpe.com/t5/operating-system-linux/vmstat-vs-top/m-p/4002344#M96185</link>
      <description>vmstat is pages, top is reporting Kb... a page is typically 4Kb... so these are about right.&lt;BR /&gt;&lt;BR /&gt;avm: 1249634 pages or 4998536Kb.&lt;BR /&gt;Free Virtual: 1567471 pages or 6269884Kb.&lt;BR /&gt;&lt;BR /&gt;Close enough to top for me.</description>
      <pubDate>Thu, 17 May 2007 17:24:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/vmstat-vs-top/m-p/4002344#M96185</guid>
      <dc:creator>Don Morris_1</dc:creator>
      <dc:date>2007-05-17T17:24:50Z</dc:date>
    </item>
    <item>
      <title>Re: vmstat vs top</title>
      <link>https://community.hpe.com/t5/operating-system-linux/vmstat-vs-top/m-p/4002345#M96186</link>
      <description>... and don't even think about trying to correlate either of these to physical memory. They only know about memory associated with processes; they know nothing about kernel data structures like buffer cache. I use top ONLY to show me the most active processes and I use vmstat ONLY to display the pageout (po) column. Everything else is almost useless. Moreover, it is very, very hard to total memory usage on a system. For example, you may have 50 instances of vi running. They each have a data segment but they share common text segments (code) and common shared library functions (which may also be in use by many other processes). How do you count those? As 1? as 50? as 3.5? There are also shared memory segments and memory-mapped files. How are those counted? In short, this is very difficult and tools written decades ago have a hard time producing meaningful numbers. Glance does a much better job but even then you have to know what you are seeing.&lt;BR /&gt;</description>
      <pubDate>Thu, 17 May 2007 17:47:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/vmstat-vs-top/m-p/4002345#M96186</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2007-05-17T17:47:18Z</dc:date>
    </item>
    <item>
      <title>Re: vmstat vs top</title>
      <link>https://community.hpe.com/t5/operating-system-linux/vmstat-vs-top/m-p/4002346#M96187</link>
      <description>Hi Guys,&lt;BR /&gt;&lt;BR /&gt;Since we're covering memory usage I'd like to know your opinion/answer on the following:&lt;BR /&gt;&lt;BR /&gt;If you have a machine that is running out of memory or thrashing, what will you address first? The paging or the swap?&lt;BR /&gt;&lt;BR /&gt;Personally I'm not aware of anything you can do for how the system does its Paging.&lt;BR /&gt;&lt;BR /&gt;Also Clay, according to what you're stating regarding the usefulness of vmstat is this just for HP-UX or is the issue across the other Unix flavors as well?&lt;BR /&gt;&lt;BR /&gt;Apologies for the hijack, but for what its worth HP-UX has a lot better tools than both.. eg. glance.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Jov</description>
      <pubDate>Thu, 17 May 2007 21:20:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/vmstat-vs-top/m-p/4002346#M96187</guid>
      <dc:creator>Jov</dc:creator>
      <dc:date>2007-05-17T21:20:18Z</dc:date>
    </item>
    <item>
      <title>Re: vmstat vs top</title>
      <link>https://community.hpe.com/t5/operating-system-linux/vmstat-vs-top/m-p/4002347#M96188</link>
      <description>While the terms "paging" and "swapping" are used almost interchangably, for all practical purposes, everything today does paging (ie, only parts of a process are paged out rather than the entire process image). HP-UX does deactivate processes but only when the box is under extreme memory pressure. The goal for modern UNIX boxes is to never (or almost never) page out at all --- and when your box does begin to page out at significant rates --- you have lost the performance battle.&lt;BR /&gt;&lt;BR /&gt;Regardless of the UNIX flavor, I really only pay attention to the pageout column because if that number is big (meaning anything over about 20 or so and I really like 0), none of the other columns mean much of anything.&lt;BR /&gt;</description>
      <pubDate>Thu, 17 May 2007 21:42:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/vmstat-vs-top/m-p/4002347#M96188</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2007-05-17T21:42:32Z</dc:date>
    </item>
    <item>
      <title>Re: vmstat vs top</title>
      <link>https://community.hpe.com/t5/operating-system-linux/vmstat-vs-top/m-p/4002348#M96189</link>
      <description>Well if you're in such a losing battle i.e. when the system is thrashing, the one thing I can think of is to nice certain processes to ride out the storm as its usually due to some batch processing or large processing that kicks in. If that doesn't work the system will eventually crash, thus its a matter of judgement call for the given instance.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Jov</description>
      <pubDate>Thu, 17 May 2007 22:32:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/vmstat-vs-top/m-p/4002348#M96189</guid>
      <dc:creator>Jov</dc:creator>
      <dc:date>2007-05-17T22:32:46Z</dc:date>
    </item>
    <item>
      <title>Re: vmstat vs top</title>
      <link>https://community.hpe.com/t5/operating-system-linux/vmstat-vs-top/m-p/4002349#M96190</link>
      <description>Secondo me,&lt;BR /&gt;&lt;BR /&gt;top is used to see the current user's memory utilization. Whereas, vmstat is used for virtual memory statistics. So, it will differer in any case. &lt;BR /&gt;&lt;BR /&gt;I think for Unix glance is better utility&lt;BR /&gt;&lt;BR /&gt;Ciao</description>
      <pubDate>Fri, 18 May 2007 08:22:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/vmstat-vs-top/m-p/4002349#M96190</guid>
      <dc:creator>Nitin Kumar Gupta</dc:creator>
      <dc:date>2007-05-18T08:22:38Z</dc:date>
    </item>
    <item>
      <title>Re: vmstat vs top</title>
      <link>https://community.hpe.com/t5/operating-system-linux/vmstat-vs-top/m-p/4002350#M96191</link>
      <description>&lt;BR /&gt;See if the box has OVPA (measureware).  It will collect the data and you can extract historical data from your system on hundreds of metrics in 5 minute averages.</description>
      <pubDate>Fri, 18 May 2007 20:15:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/vmstat-vs-top/m-p/4002350#M96191</guid>
      <dc:creator>Emil Velez</dc:creator>
      <dc:date>2007-05-18T20:15:08Z</dc:date>
    </item>
    <item>
      <title>Re: vmstat vs top</title>
      <link>https://community.hpe.com/t5/operating-system-linux/vmstat-vs-top/m-p/4002351#M96192</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Glanceplus and Openview(OVO is userfriendly and given  more info) are the best utility to check allmost all system componets like memory,cpu,disk  etc&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;rgds&lt;BR /&gt;suresh</description>
      <pubDate>Thu, 24 May 2007 00:20:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/vmstat-vs-top/m-p/4002351#M96192</guid>
      <dc:creator>Trng</dc:creator>
      <dc:date>2007-05-24T00:20:41Z</dc:date>
    </item>
  </channel>
</rss>

