<?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: which command is used to find the original physical that &amp;quot;swapinfo&amp;quot; or &amp;quot;print_manifest&amp;quot; or &amp;quot;top&amp;quot; in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/which-command-is-used-to-find-the-original-physical-that-quot/m-p/4432303#M355993</link>
    <description>&amp;gt;&amp;gt;Which one is correct.&lt;BR /&gt;All 3 are correct&lt;BR /&gt;swapinfo :- is useful to see the swap memory&lt;BR /&gt;print_manifest :- is showing your physical memory&lt;BR /&gt;and top :- is showing your virtual memory, free memory etc.&lt;BR /&gt;&lt;BR /&gt;See this belo thread&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums11.itrc.hp.com/service/forums/questionanswer.do?threadId=1087669" target="_blank"&gt;http://forums11.itrc.hp.com/service/forums/questionanswer.do?threadId=1087669&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;for more information on these&lt;BR /&gt;see the man pages of them&lt;BR /&gt;&lt;BR /&gt;Suraj</description>
    <pubDate>Fri, 05 Jun 2009 04:51:35 GMT</pubDate>
    <dc:creator>Suraj K Sankari</dc:creator>
    <dc:date>2009-06-05T04:51:35Z</dc:date>
    <item>
      <title>which command is used to find the original physical that "swapinfo" or "print_manifest" or "top"</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/which-command-is-used-to-find-the-original-physical-that-quot/m-p/4432294#M355984</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;I am using HP-UX 11.00.&lt;BR /&gt;&lt;BR /&gt;1)Swapinfo report:&lt;BR /&gt;&lt;BR /&gt;root@ad121991.emdna.emdiesels.com:/root &amp;gt; swapinfo&lt;BR /&gt;             Kb      Kb      Kb   PCT  START/      Kb&lt;BR /&gt;TYPE      AVAIL    USED    FREE  USED   LIMIT RESERVE  PRI  NAME&lt;BR /&gt;dev     8388608  144184 8244424    2%       0       -    1  /dev/vg00/lvol2&lt;BR /&gt;reserve       -  932556 -932556&lt;BR /&gt;memory  3160504 2943308  217196   93%&lt;BR /&gt;&lt;BR /&gt;Total = 3160504K (almost 3GB)&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;2)Print_manifest report:&lt;BR /&gt;&lt;BR /&gt;root@ad121991.emdna.emdiesels.com:/root &amp;gt; print_manifest | grep -i memory&lt;BR /&gt;    Main Memory:        4094 MB&lt;BR /&gt;&lt;BR /&gt;Total = 4192256K (almost 4GB)&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;3)top report:&lt;BR /&gt;&lt;BR /&gt;Memory: 314760K (174924K) real, 1266496K (507568K) virtual, 497968K free  Page#&lt;BR /&gt;1/25&lt;BR /&gt;&lt;BR /&gt;Total = 2079224k (almost 2GB).&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Which one is correct.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Pls explain the difference between three commands.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 03 Jun 2009 13:18:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/which-command-is-used-to-find-the-original-physical-that-quot/m-p/4432294#M355984</guid>
      <dc:creator>senthil_kumar_1</dc:creator>
      <dc:date>2009-06-03T13:18:11Z</dc:date>
    </item>
    <item>
      <title>Re: which command is used to find the original physical that "swapinfo" or "print_manifest" or "top"</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/which-command-is-used-to-find-the-original-physical-that-quot/m-p/4432295#M355985</link>
      <description>&lt;!--!*#--&gt;The print_manifest figure is correct if you are referring to the actual physical memory in the machine.  I use this little script (which should give the same answer as print_manifest):&lt;BR /&gt;&lt;BR /&gt;HPUX=/stand/vmunix&lt;BR /&gt;MAJORREV=$(uname -r | cut -f2 -d .)&lt;BR /&gt;if [ $MAJORREV -ge "11.0" ]&lt;BR /&gt; then&lt;BR /&gt;  MYSYMBOL="phys_mem_pages"&lt;BR /&gt;else&lt;BR /&gt;  MYSYMBOL="physmem"&lt;BR /&gt;fi&lt;BR /&gt;&lt;BR /&gt;MYMEM=$(echo "${MYSYMBOL}/D" \&lt;BR /&gt; | adb $HPUX /dev/kmem \&lt;BR /&gt; | grep "${MYSYMBOL}: *." \&lt;BR /&gt; | awk '{printf "%.0f MB\n",$2/256}')&lt;BR /&gt;echo $MYMEM&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Pete</description>
      <pubDate>Wed, 03 Jun 2009 13:22:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/which-command-is-used-to-find-the-original-physical-that-quot/m-p/4432295#M355985</guid>
      <dc:creator>Pete Randall</dc:creator>
      <dc:date>2009-06-03T13:22:45Z</dc:date>
    </item>
    <item>
      <title>Re: which command is used to find the original physical that "swapinfo" or "print_manifest" or "top"</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/which-command-is-used-to-find-the-original-physical-that-quot/m-p/4432296#M355986</link>
      <description>1) The memory line has very little to do with the actual available RAM in your system.  The memory line here reports the memory used for 'pseudo-swap' which is enabled when the swapmem_on kernel parameter is set to 1 (enabled).&lt;BR /&gt;&lt;BR /&gt;2) This is the total available physical RAM in your system.&lt;BR /&gt;&lt;BR /&gt;3) Check the man page.  I've never quite understood how top interprets information.&lt;BR /&gt;&lt;BR /&gt;&amp;gt;&amp;gt;Which one is correct.&lt;BR /&gt;&lt;BR /&gt;Well, which is correct for what?  They are all "correct" in that they report different things.</description>
      <pubDate>Wed, 03 Jun 2009 13:24:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/which-command-is-used-to-find-the-original-physical-that-quot/m-p/4432296#M355986</guid>
      <dc:creator>Patrick Wallek</dc:creator>
      <dc:date>2009-06-03T13:24:36Z</dc:date>
    </item>
    <item>
      <title>Re: which command is used to find the original physical that "swapinfo" or "print_manifest" or "top"</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/which-command-is-used-to-find-the-original-physical-that-quot/m-p/4432297#M355987</link>
      <description>Hi &lt;BR /&gt;&lt;BR /&gt; Pls explain me each report in detail.</description>
      <pubDate>Wed, 03 Jun 2009 13:31:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/which-command-is-used-to-find-the-original-physical-that-quot/m-p/4432297#M355987</guid>
      <dc:creator>senthil_kumar_1</dc:creator>
      <dc:date>2009-06-03T13:31:15Z</dc:date>
    </item>
    <item>
      <title>Re: which command is used to find the original physical that "swapinfo" or "print_manifest" or "top"</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/which-command-is-used-to-find-the-original-physical-that-quot/m-p/4432298#M355988</link>
      <description>Please read the man pages.  That is what they are there for!&lt;BR /&gt;&lt;BR /&gt;# man swapinfo&lt;BR /&gt;&lt;BR /&gt;# man print_manifest&lt;BR /&gt;&lt;BR /&gt;# man top</description>
      <pubDate>Wed, 03 Jun 2009 13:36:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/which-command-is-used-to-find-the-original-physical-that-quot/m-p/4432298#M355988</guid>
      <dc:creator>Patrick Wallek</dc:creator>
      <dc:date>2009-06-03T13:36:36Z</dc:date>
    </item>
    <item>
      <title>Re: which command is used to find the original physical that "swapinfo" or "print_manifest" or "top"</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/which-command-is-used-to-find-the-original-physical-that-quot/m-p/4432299#M355989</link>
      <description>Hi &lt;BR /&gt;&lt;BR /&gt;The print_manifest and glance commands are perfect to find the original memory&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Sunny</description>
      <pubDate>Wed, 03 Jun 2009 13:46:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/which-command-is-used-to-find-the-original-physical-that-quot/m-p/4432299#M355989</guid>
      <dc:creator>Sunny123_1</dc:creator>
      <dc:date>2009-06-03T13:46:14Z</dc:date>
    </item>
    <item>
      <title>Re: which command is used to find the original physical that "swapinfo" or "print_manifest" or "top"</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/which-command-is-used-to-find-the-original-physical-that-quot/m-p/4432300#M355990</link>
      <description>Pete -- besides the obligatory caution not to depend on kernel global names (grin) -- your script really should use `getconf _SC_PAGE_SIZE` somewhere, at least on v3 and higher. Otherwise, you're going to be badly off when the base_pagesize tunable is greater than 4.</description>
      <pubDate>Wed, 03 Jun 2009 14:33:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/which-command-is-used-to-find-the-original-physical-that-quot/m-p/4432300#M355990</guid>
      <dc:creator>Don Morris_1</dc:creator>
      <dc:date>2009-06-03T14:33:58Z</dc:date>
    </item>
    <item>
      <title>Re: which command is used to find the original physical that "swapinfo" or "print_manifest" or "top"</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/which-command-is-used-to-find-the-original-physical-that-quot/m-p/4432301#M355991</link>
      <description>Hi Kumar&lt;BR /&gt;&lt;BR /&gt;This are 3 different utility's ..&lt;BR /&gt;&lt;BR /&gt;I already put the same question to my self !! ..&lt;BR /&gt;&lt;BR /&gt;The answer is that any utility have they one purpose.&lt;BR /&gt;&lt;BR /&gt;To check the realm memory you can use print_manifest | grep -i memory or glance.&lt;BR /&gt;&lt;BR /&gt;To tuning memory, the best tools are kminfo, swpinfo and glance &lt;BR /&gt;&lt;BR /&gt;If you have any doubt please reply !!&lt;BR /&gt;&lt;BR /&gt;Best regards</description>
      <pubDate>Thu, 04 Jun 2009 16:05:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/which-command-is-used-to-find-the-original-physical-that-quot/m-p/4432301#M355991</guid>
      <dc:creator>nightwich</dc:creator>
      <dc:date>2009-06-04T16:05:13Z</dc:date>
    </item>
    <item>
      <title>Re: which command is used to find the original physical that "swapinfo" or "print_manifest" or "top"</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/which-command-is-used-to-find-the-original-physical-that-quot/m-p/4432302#M355992</link>
      <description>swapinfo command only shows the 75% of your memory utilization.&lt;BR /&gt;&lt;BR /&gt;amongst your above commands, print_manifest is the most exact output.</description>
      <pubDate>Fri, 05 Jun 2009 03:55:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/which-command-is-used-to-find-the-original-physical-that-quot/m-p/4432302#M355992</guid>
      <dc:creator>Jeeshan</dc:creator>
      <dc:date>2009-06-05T03:55:20Z</dc:date>
    </item>
    <item>
      <title>Re: which command is used to find the original physical that "swapinfo" or "print_manifest" or "top"</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/which-command-is-used-to-find-the-original-physical-that-quot/m-p/4432303#M355993</link>
      <description>&amp;gt;&amp;gt;Which one is correct.&lt;BR /&gt;All 3 are correct&lt;BR /&gt;swapinfo :- is useful to see the swap memory&lt;BR /&gt;print_manifest :- is showing your physical memory&lt;BR /&gt;and top :- is showing your virtual memory, free memory etc.&lt;BR /&gt;&lt;BR /&gt;See this belo thread&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums11.itrc.hp.com/service/forums/questionanswer.do?threadId=1087669" target="_blank"&gt;http://forums11.itrc.hp.com/service/forums/questionanswer.do?threadId=1087669&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;for more information on these&lt;BR /&gt;see the man pages of them&lt;BR /&gt;&lt;BR /&gt;Suraj</description>
      <pubDate>Fri, 05 Jun 2009 04:51:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/which-command-is-used-to-find-the-original-physical-that-quot/m-p/4432303#M355993</guid>
      <dc:creator>Suraj K Sankari</dc:creator>
      <dc:date>2009-06-05T04:51:35Z</dc:date>
    </item>
  </channel>
</rss>

