<?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: RAM on HP-UX in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/ram-on-hp-ux/m-p/3184339#M795693</link>
    <description>And another - script attached.&lt;BR /&gt;&lt;BR /&gt;Output looks like:&lt;BR /&gt;&lt;BR /&gt;# hpmem&lt;BR /&gt;HP-UX svr004 B.11.11 U 9000/800 2504392628 unlimited-user license&lt;BR /&gt;CPU Count: 6&lt;BR /&gt;CPU Speed: 750 MHz&lt;BR /&gt;CPU HW Support: 64-bit&lt;BR /&gt;Kernel Support: 64-bit&lt;BR /&gt;RAM Size: 10080 MB&lt;BR /&gt;bufpages: 806 MB&lt;BR /&gt;maxuprc: 800&lt;BR /&gt;maxvgs: 128&lt;BR /&gt;maxfiles: 2048&lt;BR /&gt;max_thread_proc: 256&lt;BR /&gt;nfile: 189100&lt;BR /&gt;nflock: 1200&lt;BR /&gt;nproc: 2560&lt;BR /&gt;ninode: 16384&lt;BR /&gt;shmmax: 1073741824&lt;BR /&gt;shmmni: 256&lt;BR /&gt;dbc_max_pct: 8&lt;BR /&gt;</description>
    <pubDate>Thu, 05 Feb 2004 12:10:52 GMT</pubDate>
    <dc:creator>Geoff Wild</dc:creator>
    <dc:date>2004-02-05T12:10:52Z</dc:date>
    <item>
      <title>RAM on HP-UX</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ram-on-hp-ux/m-p/3184333#M795687</link>
      <description>Hi,&lt;BR /&gt;How can i know the exact size of the RAM on HP-UX&lt;BR /&gt;&lt;BR /&gt;I performed a TOP ,&lt;BR /&gt;&lt;BR /&gt;I get the following, ( Virtual ,real and free ) which one should i consider ?&lt;BR /&gt;&lt;BR /&gt;Tks,&lt;BR /&gt;nag</description>
      <pubDate>Thu, 05 Feb 2004 11:54:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ram-on-hp-ux/m-p/3184333#M795687</guid>
      <dc:creator>nagendra_3</dc:creator>
      <dc:date>2004-02-05T11:54:53Z</dc:date>
    </item>
    <item>
      <title>Re: RAM on HP-UX</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ram-on-hp-ux/m-p/3184334#M795688</link>
      <description>Try any of these:&lt;BR /&gt;&lt;BR /&gt;# dmesg (look for physical memory area in bottom)&lt;BR /&gt;&lt;BR /&gt;# sam -&amp;gt; performance monitors -&amp;gt; system properties&lt;BR /&gt;&lt;BR /&gt;# stm -&amp;gt; and check for RAM info&lt;BR /&gt;&lt;BR /&gt;Also, check fromm the boot console menu</description>
      <pubDate>Thu, 05 Feb 2004 11:57:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ram-on-hp-ux/m-p/3184334#M795688</guid>
      <dc:creator>Helen French</dc:creator>
      <dc:date>2004-02-05T11:57:09Z</dc:date>
    </item>
    <item>
      <title>Re: RAM on HP-UX</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ram-on-hp-ux/m-p/3184335#M795689</link>
      <description>Nag,&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" \&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>Thu, 05 Feb 2004 11:57:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ram-on-hp-ux/m-p/3184335#M795689</guid>
      <dc:creator>Pete Randall</dc:creator>
      <dc:date>2004-02-05T11:57:10Z</dc:date>
    </item>
    <item>
      <title>Re: RAM on HP-UX</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ram-on-hp-ux/m-p/3184336#M795690</link>
      <description>Hi Nag,&lt;BR /&gt;&lt;BR /&gt;How much memory do I have&lt;BR /&gt;      a5:/ 112 # echo "selclass qualifier memory;info;wait;infolog" | cstm | grep 'Total Configured'&lt;BR /&gt;          Total Configured Memory   : 2048 MB&lt;BR /&gt;      a5:/ 113 # echo 'memory_installed_in_machine/D' | adb -k /stand/vmunix /dev/mem | perl -nle'/(\d+)/&amp;amp;&amp;amp;print$1*4,"k"'&lt;BR /&gt;      2097152k&lt;BR /&gt;      a5:/ 114 # grep Physical /var/adm/syslog/syslog.log&lt;BR /&gt;      Aug 25 08:01:07 a5 vmunix:     Physical: 2097152 Kbytes, lockable: 1562360 Kbytes, available: 1801856 Kbytes&lt;BR /&gt;      a5:/ 115 #&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.cmve.net/~merijn/" target="_blank"&gt;http://www.cmve.net/~merijn/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Kind regards,&lt;BR /&gt;Robert-Jan</description>
      <pubDate>Thu, 05 Feb 2004 11:57:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ram-on-hp-ux/m-p/3184336#M795690</guid>
      <dc:creator>Robert-Jan Goossens</dc:creator>
      <dc:date>2004-02-05T11:57:22Z</dc:date>
    </item>
    <item>
      <title>Re: RAM on HP-UX</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ram-on-hp-ux/m-p/3184337#M795691</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;There are couple of ways &lt;BR /&gt;&lt;BR /&gt;grep -i "physical" /var/adm/syslog/syslog.log. You should see Physical: xxxxx Kbytes. You will get it only if you don't recycle syslog periodically.&lt;BR /&gt;&lt;BR /&gt;If you have online diagnostics&lt;BR /&gt;&lt;BR /&gt;echo "map;selclass type memory;info;wait;infolog;dong;ok;q" |cstm&lt;BR /&gt;&lt;BR /&gt;Full proof method:&lt;BR /&gt;&lt;BR /&gt;echo "phys_mem_pages/D" |adb -k /stand/vmunix /dev/kmem&lt;BR /&gt;&lt;BR /&gt;Multiply the value you get in the above with 4 to get the memory in KB.&lt;BR /&gt;&lt;BR /&gt;-Sri&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 05 Feb 2004 12:02:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ram-on-hp-ux/m-p/3184337#M795691</guid>
      <dc:creator>Sridhar Bhaskarla</dc:creator>
      <dc:date>2004-02-05T12:02:45Z</dc:date>
    </item>
    <item>
      <title>Re: RAM on HP-UX</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ram-on-hp-ux/m-p/3184338#M795692</link>
      <description>So many ways:&lt;BR /&gt;&lt;BR /&gt;Script attached</description>
      <pubDate>Thu, 05 Feb 2004 12:07:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ram-on-hp-ux/m-p/3184338#M795692</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2004-02-05T12:07:46Z</dc:date>
    </item>
    <item>
      <title>Re: RAM on HP-UX</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ram-on-hp-ux/m-p/3184339#M795693</link>
      <description>And another - script attached.&lt;BR /&gt;&lt;BR /&gt;Output looks like:&lt;BR /&gt;&lt;BR /&gt;# hpmem&lt;BR /&gt;HP-UX svr004 B.11.11 U 9000/800 2504392628 unlimited-user license&lt;BR /&gt;CPU Count: 6&lt;BR /&gt;CPU Speed: 750 MHz&lt;BR /&gt;CPU HW Support: 64-bit&lt;BR /&gt;Kernel Support: 64-bit&lt;BR /&gt;RAM Size: 10080 MB&lt;BR /&gt;bufpages: 806 MB&lt;BR /&gt;maxuprc: 800&lt;BR /&gt;maxvgs: 128&lt;BR /&gt;maxfiles: 2048&lt;BR /&gt;max_thread_proc: 256&lt;BR /&gt;nfile: 189100&lt;BR /&gt;nflock: 1200&lt;BR /&gt;nproc: 2560&lt;BR /&gt;ninode: 16384&lt;BR /&gt;shmmax: 1073741824&lt;BR /&gt;shmmni: 256&lt;BR /&gt;dbc_max_pct: 8&lt;BR /&gt;</description>
      <pubDate>Thu, 05 Feb 2004 12:10:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ram-on-hp-ux/m-p/3184339#M795693</guid>
      <dc:creator>Geoff Wild</dc:creator>
      <dc:date>2004-02-05T12:10:52Z</dc:date>
    </item>
    <item>
      <title>Re: RAM on HP-UX</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ram-on-hp-ux/m-p/3184340#M795694</link>
      <description>glance -m (if you have glance)&lt;BR /&gt;&lt;BR /&gt;Tim</description>
      <pubDate>Sat, 07 Feb 2004 16:38:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ram-on-hp-ux/m-p/3184340#M795694</guid>
      <dc:creator>Tim D Fulford</dc:creator>
      <dc:date>2004-02-07T16:38:35Z</dc:date>
    </item>
  </channel>
</rss>

