<?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: Showing memory in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/showing-memory/m-p/2825385#M87477</link>
    <description>The easiest to remember is to run SAM and look at the system inventory under Performance -&amp;gt; System Properties. The physical memory is at the top of the listing.  This inventory is quite good at getting an overview of your system.</description>
    <pubDate>Mon, 14 Oct 2002 16:08:44 GMT</pubDate>
    <dc:creator>Bill Hassell</dc:creator>
    <dc:date>2002-10-14T16:08:44Z</dc:date>
    <item>
      <title>Showing memory</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/showing-memory/m-p/2825379#M87471</link>
      <description>When showing memory via Sam it 53191 KB (Real Acitve) but does not show total. How can I show totally memory for my machine. Ive tried dmesg..but unable to show it due to f/s full messages.</description>
      <pubDate>Mon, 14 Oct 2002 14:50:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/showing-memory/m-p/2825379#M87471</guid>
      <dc:creator>Kevin_107</dc:creator>
      <dc:date>2002-10-14T14:50:35Z</dc:date>
    </item>
    <item>
      <title>Re: Showing memory</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/showing-memory/m-p/2825380#M87472</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I like to use Glance.  The system tables report will show you the total physical memory.  I think the print_manifest script from Ignite will also give you those numbers.&lt;BR /&gt;&lt;BR /&gt;JP&lt;BR /&gt;</description>
      <pubDate>Mon, 14 Oct 2002 14:51:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/showing-memory/m-p/2825380#M87472</guid>
      <dc:creator>John Poff</dc:creator>
      <dc:date>2002-10-14T14:51:08Z</dc:date>
    </item>
    <item>
      <title>Re: Showing memory</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/showing-memory/m-p/2825381#M87473</link>
      <description>Try this script:&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;&lt;BR /&gt;MYMEM=$(echo "${MYSYMBOL}/D"         | adb $HPUX /dev/kmem         | grep "${MYSYMBOL}: *."         | awk '{printf "%.0f MB\n",$2/256}')&lt;BR /&gt;echo $MYMEM&lt;BR /&gt;&lt;BR /&gt;Pete</description>
      <pubDate>Mon, 14 Oct 2002 14:53:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/showing-memory/m-p/2825381#M87473</guid>
      <dc:creator>Pete Randall</dc:creator>
      <dc:date>2002-10-14T14:53:20Z</dc:date>
    </item>
    <item>
      <title>Re: Showing memory</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/showing-memory/m-p/2825382#M87474</link>
      <description>Hello,&lt;BR /&gt;&lt;BR /&gt;if you do not have glance use stm:&lt;BR /&gt;&lt;BR /&gt;# cstm&lt;BR /&gt;&amp;gt; map&lt;BR /&gt;&amp;gt; sel dev ###&lt;BR /&gt;(enter the number for memory as ###)&lt;BR /&gt;&amp;gt; information&lt;BR /&gt;&amp;gt; infolog&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Bernhard</description>
      <pubDate>Mon, 14 Oct 2002 14:56:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/showing-memory/m-p/2825382#M87474</guid>
      <dc:creator>Bernhard Mueller</dc:creator>
      <dc:date>2002-10-14T14:56:00Z</dc:date>
    </item>
    <item>
      <title>Re: Showing memory</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/showing-memory/m-p/2825383#M87475</link>
      <description>Thanks for you help chaps</description>
      <pubDate>Mon, 14 Oct 2002 15:03:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/showing-memory/m-p/2825383#M87475</guid>
      <dc:creator>Kevin_107</dc:creator>
      <dc:date>2002-10-14T15:03:50Z</dc:date>
    </item>
    <item>
      <title>Re: Showing memory</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/showing-memory/m-p/2825384#M87476</link>
      <description>Hi Kevin&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;You can use the attached c script to get o/p like this :&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;This script I got from the forums itslef and works good.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Manoj Srivastava</description>
      <pubDate>Mon, 14 Oct 2002 15:13:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/showing-memory/m-p/2825384#M87476</guid>
      <dc:creator>MANOJ SRIVASTAVA</dc:creator>
      <dc:date>2002-10-14T15:13:13Z</dc:date>
    </item>
    <item>
      <title>Re: Showing memory</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/showing-memory/m-p/2825385#M87477</link>
      <description>The easiest to remember is to run SAM and look at the system inventory under Performance -&amp;gt; System Properties. The physical memory is at the top of the listing.  This inventory is quite good at getting an overview of your system.</description>
      <pubDate>Mon, 14 Oct 2002 16:08:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/showing-memory/m-p/2825385#M87477</guid>
      <dc:creator>Bill Hassell</dc:creator>
      <dc:date>2002-10-14T16:08:44Z</dc:date>
    </item>
  </channel>
</rss>

