<?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 Memory Cosumption in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/memory-cosumption/m-p/3111884#M896495</link>
    <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Can any one tell me how can I extract the details of memory consumptions. I need the following details. &lt;BR /&gt;&lt;BR /&gt;Total Memory   &lt;BR /&gt;Memory Used &lt;BR /&gt;Unused Memory&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;</description>
    <pubDate>Thu, 06 Nov 2003 03:08:26 GMT</pubDate>
    <dc:creator>HutchAdmin</dc:creator>
    <dc:date>2003-11-06T03:08:26Z</dc:date>
    <item>
      <title>Memory Cosumption</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/memory-cosumption/m-p/3111884#M896495</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Can any one tell me how can I extract the details of memory consumptions. I need the following details. &lt;BR /&gt;&lt;BR /&gt;Total Memory   &lt;BR /&gt;Memory Used &lt;BR /&gt;Unused Memory&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;</description>
      <pubDate>Thu, 06 Nov 2003 03:08:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/memory-cosumption/m-p/3111884#M896495</guid>
      <dc:creator>HutchAdmin</dc:creator>
      <dc:date>2003-11-06T03:08:26Z</dc:date>
    </item>
    <item>
      <title>Re: Memory Cosumption</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/memory-cosumption/m-p/3111885#M896496</link>
      <description>Glance is a good tool for this if you have it.&lt;BR /&gt; &lt;BR /&gt;Otherwise&lt;BR /&gt; &lt;BR /&gt;"dmesg" shows how much physical RAM you've got (at least for a while).  The only other way I have found of getting actual memory is with "c" and using "pstat_getstatic()" system call and multiplying the physical memory value by 4.  I can attach an example program if you like.&lt;BR /&gt; &lt;BR /&gt;"vmstat" is good for showing average memory and free memory (in pages).</description>
      <pubDate>Thu, 06 Nov 2003 03:15:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/memory-cosumption/m-p/3111885#M896496</guid>
      <dc:creator>Mark Grant</dc:creator>
      <dc:date>2003-11-06T03:15:30Z</dc:date>
    </item>
    <item>
      <title>Re: Memory Cosumption</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/memory-cosumption/m-p/3111886#M896497</link>
      <description>grep -i physical /var/adm/syslog/syslog.log --&amp;gt; gives RAM in machine.&lt;BR /&gt;&lt;BR /&gt;glance -m Gives details abt used, free mem.&lt;BR /&gt;&lt;BR /&gt;vmstat 5 5 -- check free mem column. (free memory in pages. each page is 4096 kb)&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 06 Nov 2003 03:21:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/memory-cosumption/m-p/3111886#M896497</guid>
      <dc:creator>RAC_1</dc:creator>
      <dc:date>2003-11-06T03:21:59Z</dc:date>
    </item>
    <item>
      <title>Re: Memory Cosumption</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/memory-cosumption/m-p/3111887#M896498</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Glance is the tool you need. It is free for 60 days. If you install it, you are able to view memory usage per proces.&lt;BR /&gt;&lt;BR /&gt;Gideon</description>
      <pubDate>Thu, 06 Nov 2003 03:32:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/memory-cosumption/m-p/3111887#M896498</guid>
      <dc:creator>G. Vrijhoeven</dc:creator>
      <dc:date>2003-11-06T03:32:53Z</dc:date>
    </item>
    <item>
      <title>Re: Memory Cosumption</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/memory-cosumption/m-p/3111888#M896499</link>
      <description>For total memory, here's a little script I use:&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&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 06 Nov 2003 06:21:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/memory-cosumption/m-p/3111888#M896499</guid>
      <dc:creator>Pete Randall</dc:creator>
      <dc:date>2003-11-06T06:21:50Z</dc:date>
    </item>
  </channel>
</rss>

