<?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: Command for RAM in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/command-for-ram/m-p/4144229#M318005</link>
    <description>if you want to check how much memory do you have, use sam-&amp;gt;Performance Monitor-&amp;gt;System Properties. if you want to check the configurations of RAM (DIMM), use cstm -&amp;gt; selall -&amp;gt; infolog&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;-yut-</description>
    <pubDate>Wed, 13 Feb 2008 08:37:24 GMT</pubDate>
    <dc:creator>yulianto piyut</dc:creator>
    <dc:date>2008-02-13T08:37:24Z</dc:date>
    <item>
      <title>Command for RAM</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/command-for-ram/m-p/4144226#M318002</link>
      <description>How can i check a RAM details in HP UX server. I have tried with TOP but its giving a variable memory details.&lt;BR /&gt;Thanks&lt;BR /&gt;GV</description>
      <pubDate>Wed, 13 Feb 2008 05:59:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/command-for-ram/m-p/4144226#M318002</guid>
      <dc:creator>Gops_1</dc:creator>
      <dc:date>2008-02-13T05:59:09Z</dc:date>
    </item>
    <item>
      <title>Re: Command for RAM</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/command-for-ram/m-p/4144227#M318003</link>
      <description>What does it mean "RAM details"?&lt;BR /&gt;&lt;BR /&gt;From the hardware point of view run&lt;BR /&gt;&lt;BR /&gt;echo "selclass qualifier memory;info;wait;infolog" | /usr/sbin/cstm</description>
      <pubDate>Wed, 13 Feb 2008 06:07:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/command-for-ram/m-p/4144227#M318003</guid>
      <dc:creator>Torsten.</dc:creator>
      <dc:date>2008-02-13T06:07:23Z</dc:date>
    </item>
    <item>
      <title>Re: Command for RAM</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/command-for-ram/m-p/4144228#M318004</link>
      <description>As stated above, memory details can be found through the command "cstm".&lt;BR /&gt;&lt;BR /&gt;For easy usage to find out the ram details, use: &lt;BR /&gt;echo "selclass qualifier memory;info;wait;infolog" | /usr/sbin/cstm</description>
      <pubDate>Wed, 13 Feb 2008 08:15:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/command-for-ram/m-p/4144228#M318004</guid>
      <dc:creator>Shibin_2</dc:creator>
      <dc:date>2008-02-13T08:15:06Z</dc:date>
    </item>
    <item>
      <title>Re: Command for RAM</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/command-for-ram/m-p/4144229#M318005</link>
      <description>if you want to check how much memory do you have, use sam-&amp;gt;Performance Monitor-&amp;gt;System Properties. if you want to check the configurations of RAM (DIMM), use cstm -&amp;gt; selall -&amp;gt; infolog&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;-yut-</description>
      <pubDate>Wed, 13 Feb 2008 08:37:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/command-for-ram/m-p/4144229#M318005</guid>
      <dc:creator>yulianto piyut</dc:creator>
      <dc:date>2008-02-13T08:37:24Z</dc:date>
    </item>
    <item>
      <title>Re: Command for RAM</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/command-for-ram/m-p/4144230#M318006</link>
      <description>&lt;!--!*#--&gt;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" \&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, 13 Feb 2008 10:52:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/command-for-ram/m-p/4144230#M318006</guid>
      <dc:creator>Pete Randall</dc:creator>
      <dc:date>2008-02-13T10:52:36Z</dc:date>
    </item>
    <item>
      <title>Re: Command for RAM</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/command-for-ram/m-p/4144231#M318007</link>
      <description>&lt;!--!*#--&gt;Please use&lt;BR /&gt;print_manifest | grep -i memory&lt;BR /&gt;&lt;BR /&gt;or &lt;BR /&gt;&lt;BR /&gt;Use the following path to get the RAM information&lt;BR /&gt;Go to cstm &lt;BR /&gt;type&amp;gt;  map&lt;BR /&gt;type&amp;gt; sel dev num  #type the RAM number&lt;BR /&gt;type&amp;gt;  info&lt;BR /&gt;type&amp;gt; infolog&lt;BR /&gt;&lt;BR /&gt;These are thebest way to find on HP-UX systems&lt;BR /&gt;</description>
      <pubDate>Wed, 13 Feb 2008 10:56:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/command-for-ram/m-p/4144231#M318007</guid>
      <dc:creator>Vivek Bhatia</dc:creator>
      <dc:date>2008-02-13T10:56:31Z</dc:date>
    </item>
  </channel>
</rss>

