<?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: Memory Check in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/memory-check/m-p/2818583#M86071</link>
    <description>Top will give you a rough estimate of what is available.&lt;BR /&gt;&lt;BR /&gt;But Glance is the only real way to see what is being used and how much is physically free.&lt;BR /&gt;</description>
    <pubDate>Thu, 03 Oct 2002 20:06:04 GMT</pubDate>
    <dc:creator>Sean OB_1</dc:creator>
    <dc:date>2002-10-03T20:06:04Z</dc:date>
    <item>
      <title>Memory Check</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/memory-check/m-p/2818582#M86070</link>
      <description>Is there a command to check the memory usage on an HP9000.  I've got several databases on the box and need to add another.  I'm trying to find out how much more memory I have to allocate.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Allen</description>
      <pubDate>Thu, 03 Oct 2002 20:02:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/memory-check/m-p/2818582#M86070</guid>
      <dc:creator>Allen Karczmarek</dc:creator>
      <dc:date>2002-10-03T20:02:43Z</dc:date>
    </item>
    <item>
      <title>Re: Memory Check</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/memory-check/m-p/2818583#M86071</link>
      <description>Top will give you a rough estimate of what is available.&lt;BR /&gt;&lt;BR /&gt;But Glance is the only real way to see what is being used and how much is physically free.&lt;BR /&gt;</description>
      <pubDate>Thu, 03 Oct 2002 20:06:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/memory-check/m-p/2818583#M86071</guid>
      <dc:creator>Sean OB_1</dc:creator>
      <dc:date>2002-10-03T20:06:04Z</dc:date>
    </item>
    <item>
      <title>Re: Memory Check</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/memory-check/m-p/2818584#M86072</link>
      <description>By far, your best choice is Glance. You can use it to get per process values. If you don't have Glance, you can install a fully functional trial version from your Application CD's. Glance will also show shared memory usage.&lt;BR /&gt;&lt;BR /&gt;You can also use top and ps but these metrics are less accurate and more limited. You must also use ipcs to see shared memory usage but again it's not as directed as Glance is for spotting per process usage.&lt;BR /&gt;</description>
      <pubDate>Thu, 03 Oct 2002 20:09:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/memory-check/m-p/2818584#M86072</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2002-10-03T20:09:19Z</dc:date>
    </item>
    <item>
      <title>Re: Memory Check</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/memory-check/m-p/2818585#M86073</link>
      <description>Thanks !!!!</description>
      <pubDate>Thu, 03 Oct 2002 20:22:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/memory-check/m-p/2818585#M86073</guid>
      <dc:creator>Allen Karczmarek</dc:creator>
      <dc:date>2002-10-03T20:22:03Z</dc:date>
    </item>
    <item>
      <title>Re: Memory Check</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/memory-check/m-p/2818586#M86074</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;vmstat -n 1 1 displays the ammount of free RAM&lt;BR /&gt;&lt;BR /&gt;Script to check free memory &lt;BR /&gt;&lt;BR /&gt;let x=$(grep -i &lt;BR /&gt;physical: /var/adm/syslog/syslog.log | head -1 | awk '{print $7} &lt;BR /&gt;')/1048 &lt;BR /&gt;let z=$(vmstat|tail -1|awk '{print $5}')*4096;let z=$z/1000000 &lt;BR /&gt;let free=100000/$x*$z &lt;BR /&gt;let free=$free/1000 &lt;BR /&gt;let free=100-$free &lt;BR /&gt;echo "$x Mb physical memory \n$z Mb memory free \n$free % used" &lt;BR /&gt;&lt;BR /&gt;HTH&lt;BR /&gt;&lt;BR /&gt;Steve &lt;BR /&gt;</description>
      <pubDate>Thu, 03 Oct 2002 20:27:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/memory-check/m-p/2818586#M86074</guid>
      <dc:creator>steven Burgess_2</dc:creator>
      <dc:date>2002-10-03T20:27:17Z</dc:date>
    </item>
    <item>
      <title>Re: Memory Check</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/memory-check/m-p/2818587#M86075</link>
      <description>Hi Allen&lt;BR /&gt;&lt;BR /&gt;here is a simple C program that iI got from the forums whihc can be comipled and can give o/p as :&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Memory Stat      total   used  avail  %used&lt;BR /&gt;physical        32764.0 8058.4 24705.6    25%&lt;BR /&gt;active virtual   531.3  128.9  402.4    24%&lt;BR /&gt;active real      597.0  136.0  461.0    23%&lt;BR /&gt;memory swap     26522.5 3738.2 22784.3    14%&lt;BR /&gt;device swap     2378.0 2365.5   12.5    99%&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;I ahve attached the script&lt;BR /&gt;&lt;BR /&gt;Manoj Srivastava</description>
      <pubDate>Thu, 03 Oct 2002 20:53:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/memory-check/m-p/2818587#M86075</guid>
      <dc:creator>MANOJ SRIVASTAVA</dc:creator>
      <dc:date>2002-10-03T20:53:15Z</dc:date>
    </item>
  </channel>
</rss>

