<?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: how much memory does he want? in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/how-much-memory-does-he-want/m-p/2690446#M55272</link>
    <description>Actually it's close to 1GB. By definition, vsz is "the size of the process in virtual memory in kilobytes as a decimal integer". &lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Tue, 26 Mar 2002 05:49:46 GMT</pubDate>
    <dc:creator>S.K. Chan</dc:creator>
    <dc:date>2002-03-26T05:49:46Z</dc:date>
    <item>
      <title>how much memory does he want?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-much-memory-does-he-want/m-p/2690445#M55271</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;I've been asked to look at the mib2agt process as it appears to be taking up a lot of memory on one of our systems.&lt;BR /&gt;&lt;BR /&gt;There is a know issue (and patch)&lt;BR /&gt;&lt;BR /&gt;The questions is regarding how to see how much mem the process is using&lt;BR /&gt;&lt;BR /&gt;i'm running the following command to check this&lt;BR /&gt;&lt;BR /&gt;UNIX95= ps -e -o ruser,vsz,state,pid,args|sed '1d'|sort -rnk2 |grep mib2agt| more   &lt;BR /&gt;&lt;BR /&gt;this returns&lt;BR /&gt;&lt;BR /&gt;root      966952 S   853 /usr/sbin/mib2agt&lt;BR /&gt;&lt;BR /&gt;the definition for vsz is&lt;BR /&gt;&lt;BR /&gt;The size in kilobytes (1024 byte units) of the&lt;BR /&gt;core image of the process. &lt;BR /&gt;&lt;BR /&gt;Am i correct in my calculation thinking this process is using almost a meg of memory&lt;BR /&gt;T&lt;BR /&gt;hanks in advance&lt;BR /&gt;&lt;BR /&gt;Steve&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 26 Mar 2002 05:17:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-much-memory-does-he-want/m-p/2690445#M55271</guid>
      <dc:creator>steven Burgess_2</dc:creator>
      <dc:date>2002-03-26T05:17:36Z</dc:date>
    </item>
    <item>
      <title>Re: how much memory does he want?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-much-memory-does-he-want/m-p/2690446#M55272</link>
      <description>Actually it's close to 1GB. By definition, vsz is "the size of the process in virtual memory in kilobytes as a decimal integer". &lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 26 Mar 2002 05:49:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-much-memory-does-he-want/m-p/2690446#M55272</guid>
      <dc:creator>S.K. Chan</dc:creator>
      <dc:date>2002-03-26T05:49:46Z</dc:date>
    </item>
    <item>
      <title>Re: how much memory does he want?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-much-memory-does-he-want/m-p/2690447#M55273</link>
      <description>SK&lt;BR /&gt;&lt;BR /&gt;Thanks for the reply, i initially looked and thought, thats nearly a gig, but though it to be unbelievably high&lt;BR /&gt;&lt;BR /&gt;ok&lt;BR /&gt;&lt;BR /&gt;I understand the concept of virtual memory, but, at the moment the process from the UNIX95 command &lt;BR /&gt;                      VSZ   &lt;BR /&gt;root          68   16 11722 grep mib2agt&lt;BR /&gt;&lt;BR /&gt;Then from glance&lt;BR /&gt;&lt;BR /&gt;mib2agt        853      1 154 root      0.0/ 0.0     0.0  0.0/ 0.0 107.5mb&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;whats RSS?&lt;BR /&gt;&lt;BR /&gt;Whats the difference in the 2 figures&lt;BR /&gt;&lt;BR /&gt;Thanks in advance&lt;BR /&gt;&lt;BR /&gt;Steve &lt;BR /&gt;</description>
      <pubDate>Tue, 26 Mar 2002 06:45:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-much-memory-does-he-want/m-p/2690447#M55273</guid>
      <dc:creator>steven Burgess_2</dc:creator>
      <dc:date>2002-03-26T06:45:14Z</dc:date>
    </item>
    <item>
      <title>Re: how much memory does he want?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-much-memory-does-he-want/m-p/2690448#M55274</link>
      <description>RSZ = Resident set size&lt;BR /&gt;VSZ = Virtual set size&lt;BR /&gt;&lt;BR /&gt;RSZ is a subset of VSZ - the portion of the processes memory which is 'resident' in physical memory (ie not paged out).  VSZ is the total size, including resident and non-resident pages.&lt;BR /&gt;&lt;BR /&gt;These values are totals, obtained by adding up the memory utilisation of the processes various memory segments (of which there can be lots).  Its not uncommon for glance and ps to report slightly different results.  For more detail get glance to give you a memory report for that process - you will then see a list of all the processes memory segments.&lt;BR /&gt;&lt;BR /&gt;An unpatched mib2agt process is a well known memory leaker on HPUX.  Once you've got the SNMP agent patch installed everything will be fine.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Steve</description>
      <pubDate>Tue, 26 Mar 2002 12:34:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-much-memory-does-he-want/m-p/2690448#M55274</guid>
      <dc:creator>Steven Gillard_2</dc:creator>
      <dc:date>2002-03-26T12:34:42Z</dc:date>
    </item>
    <item>
      <title>Re: how much memory does he want?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-much-memory-does-he-want/m-p/2690449#M55275</link>
      <description>Steven,&lt;BR /&gt;&lt;BR /&gt;That's not a memory LEAK, that's a memory SIEVE. That warrant's an immediate patch install.&lt;BR /&gt;&lt;BR /&gt;live free or die&lt;BR /&gt;harry</description>
      <pubDate>Tue, 26 Mar 2002 12:41:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-much-memory-does-he-want/m-p/2690449#M55275</guid>
      <dc:creator>harry d brown jr</dc:creator>
      <dc:date>2002-03-26T12:41:19Z</dc:date>
    </item>
  </channel>
</rss>

