<?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 in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/memory/m-p/2826977#M87883</link>
    <description>Hi Sameer&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Couple of ways to do it :&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;1. dmesg | grep Phy will give you the physcial memeory .&lt;BR /&gt;&lt;BR /&gt;2. SAM---&amp;gt;Performance Monitors---&amp;gt;system properties .&lt;BR /&gt;&lt;BR /&gt;3. Glance&lt;BR /&gt;&lt;BR /&gt;4. print _manifest if you ahve ignite installed .&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Manoj Srivastava&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Wed, 16 Oct 2002 13:53:23 GMT</pubDate>
    <dc:creator>MANOJ SRIVASTAVA</dc:creator>
    <dc:date>2002-10-16T13:53:23Z</dc:date>
    <item>
      <title>memory</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/memory/m-p/2826971#M87877</link>
      <description>Hi,&lt;BR /&gt;Can anybody let me know how to check the memory of Hp ux machine using command line.&lt;BR /&gt;&lt;BR /&gt;thanks&lt;BR /&gt;</description>
      <pubDate>Wed, 16 Oct 2002 12:00:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/memory/m-p/2826971#M87877</guid>
      <dc:creator>sameer_4</dc:creator>
      <dc:date>2002-10-16T12:00:31Z</dc:date>
    </item>
    <item>
      <title>Re: memory</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/memory/m-p/2826972#M87878</link>
      <description>I use 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;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>Wed, 16 Oct 2002 12:04:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/memory/m-p/2826972#M87878</guid>
      <dc:creator>Pete Randall</dc:creator>
      <dc:date>2002-10-16T12:04:26Z</dc:date>
    </item>
    <item>
      <title>Re: memory</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/memory/m-p/2826973#M87879</link>
      <description>#echo phys_mem_pages/D | adb64  /stand/vmunix /dev/mem&lt;BR /&gt;&lt;BR /&gt;Multiply the resultant by 4096to get the value.&lt;BR /&gt;&lt;BR /&gt;Also can use&lt;BR /&gt;&lt;BR /&gt;#cat /var/adm/syslog/syslog.log|grep Phy&lt;BR /&gt;to get the amount of memory&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Thanks</description>
      <pubDate>Wed, 16 Oct 2002 12:16:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/memory/m-p/2826973#M87879</guid>
      <dc:creator>T G Manikandan</dc:creator>
      <dc:date>2002-10-16T12:16:49Z</dc:date>
    </item>
    <item>
      <title>Re: memory</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/memory/m-p/2826974#M87880</link>
      <description>Hello&lt;BR /&gt;&lt;BR /&gt;The command&lt;BR /&gt; # dmesg&lt;BR /&gt;&lt;BR /&gt;will show you some memory information.&lt;BR /&gt;&lt;BR /&gt;Typically look for:&lt;BR /&gt; Memory Information:&lt;BR /&gt;    Physical: 262144 Kbytes, lockable: 179996 Kbytes, available: 211716 Kbytes&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 16 Oct 2002 12:20:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/memory/m-p/2826974#M87880</guid>
      <dc:creator>Bjoern Myrland</dc:creator>
      <dc:date>2002-10-16T12:20:34Z</dc:date>
    </item>
    <item>
      <title>Re: memory</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/memory/m-p/2826975#M87881</link>
      <description>Hello,&lt;BR /&gt;&lt;BR /&gt;Do you mean checking size or checking fro errors ? Pete gave you a good script for size.&lt;BR /&gt;&lt;BR /&gt;Here is an access to error log from diags :&lt;BR /&gt;&lt;BR /&gt;A - get your memory HW path from ioscan -k (something like 8 memory Memory)&lt;BR /&gt;&lt;BR /&gt;B - create an input file (X is your memory HW path) containing :&lt;BR /&gt;sel path X &lt;BR /&gt;il&lt;BR /&gt;done&lt;BR /&gt;exit&lt;BR /&gt;&lt;BR /&gt;C - run "cstm &amp;lt; file"&lt;BR /&gt;Output will be something like :&lt;BR /&gt;&lt;BR /&gt;-- Information Tool Log for MEMORY on path 8 --&lt;BR /&gt;&lt;BR /&gt;Log creation time: Wed Oct 16 15:16:39 2002&lt;BR /&gt;&lt;BR /&gt;Hardware path: 8&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Basic Memory Description&lt;BR /&gt;&lt;BR /&gt;    Module Type: MEMORY&lt;BR /&gt;    Total Configured Memory   : 512 MB&lt;BR /&gt;    Page Size: 4096 Bytes&lt;BR /&gt;&lt;BR /&gt;    Memory interleaving is supported on this machine and is ON.&lt;BR /&gt;&lt;BR /&gt;Memory Board Inventory &lt;BR /&gt;&lt;BR /&gt;   DIMM Slot      Size (MB)&lt;BR /&gt;   ---------      ---------&lt;BR /&gt;          0a            256&lt;BR /&gt;          0b            256&lt;BR /&gt;   ---------      ---------&lt;BR /&gt;   System Total (MB):   512&lt;BR /&gt;&lt;BR /&gt;Memory Error Log Summary &lt;BR /&gt;&lt;BR /&gt;    The memory error log is empty.&lt;BR /&gt;&lt;BR /&gt;Page Deallocation Table (PDT)&lt;BR /&gt;&lt;BR /&gt;    PDT Entries Used: 0  &lt;BR /&gt;    PDT Entries Free: 50  &lt;BR /&gt;    PDT Total Size: 50  &lt;BR /&gt;-- Information Tool Log for MEMORY on path 8 --&lt;BR /&gt;</description>
      <pubDate>Wed, 16 Oct 2002 12:21:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/memory/m-p/2826975#M87881</guid>
      <dc:creator>Jean-Louis Phelix</dc:creator>
      <dc:date>2002-10-16T12:21:10Z</dc:date>
    </item>
    <item>
      <title>Re: memory</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/memory/m-p/2826976#M87882</link>
      <description>Try using the mem command.&lt;BR /&gt;&amp;gt;mem</description>
      <pubDate>Wed, 16 Oct 2002 13:24:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/memory/m-p/2826976#M87882</guid>
      <dc:creator>Ken Hubnik_2</dc:creator>
      <dc:date>2002-10-16T13:24:34Z</dc:date>
    </item>
    <item>
      <title>Re: memory</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/memory/m-p/2826977#M87883</link>
      <description>Hi Sameer&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Couple of ways to do it :&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;1. dmesg | grep Phy will give you the physcial memeory .&lt;BR /&gt;&lt;BR /&gt;2. SAM---&amp;gt;Performance Monitors---&amp;gt;system properties .&lt;BR /&gt;&lt;BR /&gt;3. Glance&lt;BR /&gt;&lt;BR /&gt;4. print _manifest if you ahve ignite installed .&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Manoj Srivastava&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 16 Oct 2002 13:53:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/memory/m-p/2826977#M87883</guid>
      <dc:creator>MANOJ SRIVASTAVA</dc:creator>
      <dc:date>2002-10-16T13:53:23Z</dc:date>
    </item>
    <item>
      <title>Re: memory</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/memory/m-p/2826978#M87884</link>
      <description>Another alternative:&lt;BR /&gt;&lt;BR /&gt;echo "selclass qualifier memory;info;wait;infolog"|cstm&lt;BR /&gt;&lt;BR /&gt;Tom</description>
      <pubDate>Wed, 16 Oct 2002 13:56:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/memory/m-p/2826978#M87884</guid>
      <dc:creator>Tom Maloy</dc:creator>
      <dc:date>2002-10-16T13:56:04Z</dc:date>
    </item>
  </channel>
</rss>

