<?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: Physical Memory in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/physical-memory/m-p/3025234#M131397</link>
    <description>Take a look at the kmeminfo command - it's the easiest way to get memory information. It also gives you many useful information...&lt;BR /&gt;</description>
    <pubDate>Wed, 16 Jul 2003 13:27:05 GMT</pubDate>
    <dc:creator>Augusto Vinhaes</dc:creator>
    <dc:date>2003-07-16T13:27:05Z</dc:date>
    <item>
      <title>Physical Memory</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/physical-memory/m-p/3025227#M131390</link>
      <description>I have a C3750 running 11i and I would like to find out how much physical memory I have in the machine.   Can someone tell me a way to view this?&lt;BR /&gt;&lt;BR /&gt;-S</description>
      <pubDate>Wed, 16 Jul 2003 11:52:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/physical-memory/m-p/3025227#M131390</guid>
      <dc:creator>Scott McDade</dc:creator>
      <dc:date>2003-07-16T11:52:35Z</dc:date>
    </item>
    <item>
      <title>Re: Physical Memory</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/physical-memory/m-p/3025228#M131391</link>
      <description>Scott,&lt;BR /&gt;&lt;BR /&gt;I use this little 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;&lt;BR /&gt;Pete&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 16 Jul 2003 11:56:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/physical-memory/m-p/3025228#M131391</guid>
      <dc:creator>Pete Randall</dc:creator>
      <dc:date>2003-07-16T11:56:18Z</dc:date>
    </item>
    <item>
      <title>Re: Physical Memory</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/physical-memory/m-p/3025229#M131392</link>
      <description>echo "phys_mem_pages/D" | adb /stand/vmunix /dev/kmem | grep phys | tail -1 | awk '{printf "%.0f MB\n",$2/256}'&lt;BR /&gt;&lt;BR /&gt;It works.</description>
      <pubDate>Wed, 16 Jul 2003 11:57:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/physical-memory/m-p/3025229#M131392</guid>
      <dc:creator>Jannik</dc:creator>
      <dc:date>2003-07-16T11:57:43Z</dc:date>
    </item>
    <item>
      <title>Re: Physical Memory</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/physical-memory/m-p/3025230#M131393</link>
      <description>even less typing :&lt;BR /&gt;&lt;BR /&gt;dmesg | grep Physical&lt;BR /&gt;&lt;BR /&gt;works only if the system error message buffer did not overflow, else go for:&lt;BR /&gt;grep Physical /var/adm/syslog/syslog.log&lt;BR /&gt;&lt;BR /&gt;regards,&lt;BR /&gt;Thierry.</description>
      <pubDate>Wed, 16 Jul 2003 12:05:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/physical-memory/m-p/3025230#M131393</guid>
      <dc:creator>Thierry Poels_1</dc:creator>
      <dc:date>2003-07-16T12:05:44Z</dc:date>
    </item>
    <item>
      <title>Re: Physical Memory</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/physical-memory/m-p/3025231#M131394</link>
      <description>Hi Scott:&lt;BR /&gt;&lt;BR /&gt;Another way:&lt;BR /&gt;&lt;BR /&gt;# echo "selclass qualifier memory;info;wait;infolog" | cstm &amp;gt; /tmp/meminfo&lt;BR /&gt;&lt;BR /&gt;You can see physical memory DIMMS and size and arrangement with this.&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Wed, 16 Jul 2003 12:09:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/physical-memory/m-p/3025231#M131394</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2003-07-16T12:09:43Z</dc:date>
    </item>
    <item>
      <title>Re: Physical Memory</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/physical-memory/m-p/3025232#M131395</link>
      <description>Hi!&lt;BR /&gt;&lt;BR /&gt;Try one of the following:&lt;BR /&gt;&lt;BR /&gt;#echo phys_mem_pages/D | adb64 /stand/vmunix /dev/mem &lt;BR /&gt;&lt;BR /&gt;or&lt;BR /&gt;&lt;BR /&gt;SAM---&amp;gt;performance monitor---&amp;gt;system properties &lt;BR /&gt;&lt;BR /&gt;or&lt;BR /&gt;&lt;BR /&gt;cat /var/adm/syslog/syslog.log|grep Physical &lt;BR /&gt;&lt;BR /&gt;or &lt;BR /&gt;&lt;BR /&gt;dmesg&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;Dario</description>
      <pubDate>Wed, 16 Jul 2003 12:21:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/physical-memory/m-p/3025232#M131395</guid>
      <dc:creator>Dario_1</dc:creator>
      <dc:date>2003-07-16T12:21:38Z</dc:date>
    </item>
    <item>
      <title>Re: Physical Memory</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/physical-memory/m-p/3025233#M131396</link>
      <description>The result of adb command shown above is in 4KB memory pages, so multiply it by 4096 to get the memory size in bytes.</description>
      <pubDate>Wed, 16 Jul 2003 12:31:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/physical-memory/m-p/3025233#M131396</guid>
      <dc:creator>Elena Leontieva</dc:creator>
      <dc:date>2003-07-16T12:31:35Z</dc:date>
    </item>
    <item>
      <title>Re: Physical Memory</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/physical-memory/m-p/3025234#M131397</link>
      <description>Take a look at the kmeminfo command - it's the easiest way to get memory information. It also gives you many useful information...&lt;BR /&gt;</description>
      <pubDate>Wed, 16 Jul 2003 13:27:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/physical-memory/m-p/3025234#M131397</guid>
      <dc:creator>Augusto Vinhaes</dc:creator>
      <dc:date>2003-07-16T13:27:05Z</dc:date>
    </item>
    <item>
      <title>Re: Physical Memory</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/physical-memory/m-p/3025235#M131398</link>
      <description># dmesg |grep -i physical</description>
      <pubDate>Wed, 16 Jul 2003 14:10:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/physical-memory/m-p/3025235#M131398</guid>
      <dc:creator>twang</dc:creator>
      <dc:date>2003-07-16T14:10:39Z</dc:date>
    </item>
    <item>
      <title>Re: Physical Memory</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/physical-memory/m-p/3025236#M131399</link>
      <description>If you have Support Tools Manager (STM) you can run cstm from the command line and select memory from the list of system resources. Depending on the system you have, memory may show up more than once. Add it all together. You can see some great info here including the actual memory banks and how much expandability your system has. You can also see memory parity errors. Good Tool!</description>
      <pubDate>Wed, 16 Jul 2003 14:16:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/physical-memory/m-p/3025236#M131399</guid>
      <dc:creator>Brian DelPizzo</dc:creator>
      <dc:date>2003-07-16T14:16:01Z</dc:date>
    </item>
    <item>
      <title>Re: Physical Memory</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/physical-memory/m-p/3025237#M131400</link>
      <description>Use command&lt;BR /&gt; # grep physical /var/adm/syslog/syslog.log</description>
      <pubDate>Wed, 16 Jul 2003 15:17:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/physical-memory/m-p/3025237#M131400</guid>
      <dc:creator>Srinivas Thokala_1</dc:creator>
      <dc:date>2003-07-16T15:17:30Z</dc:date>
    </item>
  </channel>
</rss>

