<?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 to find the memory in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/command-to-find-the-memory/m-p/3592273#M828107</link>
    <description>Shiv&lt;BR /&gt;&lt;BR /&gt;easiest would be to fire up glance&lt;BR /&gt;or&lt;BR /&gt;dmesg | grep -i physical&lt;BR /&gt;&lt;BR /&gt;and the like&lt;BR /&gt;DP</description>
    <pubDate>Sun, 31 Jul 2005 01:26:27 GMT</pubDate>
    <dc:creator>Devesh Pant_1</dc:creator>
    <dc:date>2005-07-31T01:26:27Z</dc:date>
    <item>
      <title>Command to find the memory</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/command-to-find-the-memory/m-p/3592263#M828097</link>
      <description>Dear Sirs,&lt;BR /&gt;&lt;BR /&gt;What is the command to find the memory of the system ?&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Shiv</description>
      <pubDate>Thu, 28 Jul 2005 17:12:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/command-to-find-the-memory/m-p/3592263#M828097</guid>
      <dc:creator>Shivkumar</dc:creator>
      <dc:date>2005-07-28T17:12:55Z</dc:date>
    </item>
    <item>
      <title>Re: Command to find the memory</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/command-to-find-the-memory/m-p/3592264#M828098</link>
      <description>&lt;BR /&gt;&lt;BR /&gt;dmesg | grep -i physical&lt;BR /&gt;&lt;BR /&gt;-or-&lt;BR /&gt;&lt;BR /&gt;echo phys_mem_pages/D | adb -k /stand/vmunix /dev/mem | \&lt;BR /&gt;awk '{print 4096*$2}'</description>
      <pubDate>Thu, 28 Jul 2005 17:15:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/command-to-find-the-memory/m-p/3592264#M828098</guid>
      <dc:creator>Mel Burslan</dc:creator>
      <dc:date>2005-07-28T17:15:41Z</dc:date>
    </item>
    <item>
      <title>Re: Command to find the memory</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/command-to-find-the-memory/m-p/3592265#M828099</link>
      <description>Check out this website.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="ftp://hprc.external.hp.com/memory.htm" target="_blank"&gt;ftp://hprc.external.hp.com/memory.htm&lt;/A&gt;</description>
      <pubDate>Thu, 28 Jul 2005 17:34:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/command-to-find-the-memory/m-p/3592265#M828099</guid>
      <dc:creator>Sheriff Andy</dc:creator>
      <dc:date>2005-07-28T17:34:38Z</dc:date>
    </item>
    <item>
      <title>Re: Command to find the memory</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/command-to-find-the-memory/m-p/3592266#M828100</link>
      <description>Shiv,&lt;BR /&gt;here is a small script courtesy Stephan Farrely&lt;BR /&gt;-----------------------------------&lt;BR /&gt;#!/bin/ksh     &lt;BR /&gt;# Find total memory claimed by system. &lt;BR /&gt;# With help of  Stefan Farrely                         &lt;BR /&gt;count=0                             &lt;BR /&gt;for input in `UNIX95= ps -e -o vsz=Kbytes -o ruser -o pid,args=Command-Line | sort -rnk1 | grep -v Kbytes | awk '{print $1}'`&lt;BR /&gt;do                                  &lt;BR /&gt;count=`expr $count + $input`         &lt;BR /&gt;done                               &lt;BR /&gt;print "Total memory claimed : $count Kbytes \n"  &lt;BR /&gt;---------------------- &lt;BR /&gt;&lt;BR /&gt;thanks&lt;BR /&gt;DP</description>
      <pubDate>Thu, 28 Jul 2005 17:36:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/command-to-find-the-memory/m-p/3592266#M828100</guid>
      <dc:creator>Devesh Pant_1</dc:creator>
      <dc:date>2005-07-28T17:36:33Z</dc:date>
    </item>
    <item>
      <title>Re: Command to find the memory</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/command-to-find-the-memory/m-p/3592267#M828101</link>
      <description>Shiv,&lt;BR /&gt;&lt;BR /&gt;Depends on the OS version you are using.&lt;BR /&gt;&lt;BR /&gt;For 10.x use:&lt;BR /&gt;&lt;BR /&gt;# echo  physmem/D | adb /stand/vmunix /dev/kmem&lt;BR /&gt;&lt;BR /&gt;For 32-bit 11.x use:&lt;BR /&gt;&lt;BR /&gt;# echo phys_mem_pages/D | adb /stand/vmunix /dev/kmem&lt;BR /&gt;&lt;BR /&gt;For 64-bit 11.x multiply the output below with 4096 for total memory in bytes:&lt;BR /&gt;&lt;BR /&gt;# echo phys_mem_pages/D | adb /stand/vmunix /dev/kmem&lt;BR /&gt;&lt;BR /&gt;with SAM...&lt;BR /&gt;&lt;BR /&gt;SAM -&amp;gt; Performance Monitors -&amp;gt; System Properties -&amp;gt; Memory&lt;BR /&gt;&lt;BR /&gt;cheers!</description>
      <pubDate>Thu, 28 Jul 2005 17:47:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/command-to-find-the-memory/m-p/3592267#M828101</guid>
      <dc:creator>Sandman!</dc:creator>
      <dc:date>2005-07-28T17:47:57Z</dc:date>
    </item>
    <item>
      <title>Re: Command to find the memory</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/command-to-find-the-memory/m-p/3592268#M828102</link>
      <description>Sorry correction multiply the output of each of the above commands with 4096 to get the total memory in bytes or simply use SAM.&lt;BR /&gt;&lt;BR /&gt;hope it helps!!!</description>
      <pubDate>Thu, 28 Jul 2005 17:50:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/command-to-find-the-memory/m-p/3592268#M828102</guid>
      <dc:creator>Sandman!</dc:creator>
      <dc:date>2005-07-28T17:50:03Z</dc:date>
    </item>
    <item>
      <title>Re: Command to find the memory</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/command-to-find-the-memory/m-p/3592269#M828103</link>
      <description>Hi Shiv,&lt;BR /&gt;&lt;BR /&gt;To get the total physical memory on a system&lt;BR /&gt;grep -i physical grep -i physical /var/adm/syslog/OLDsyslog.log&lt;BR /&gt;&lt;BR /&gt;or&lt;BR /&gt;&lt;BR /&gt;Memory:&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 above with 4 to get it in KB.&lt;BR /&gt;&lt;BR /&gt;IA&lt;BR /&gt;</description>
      <pubDate>Thu, 28 Jul 2005 19:02:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/command-to-find-the-memory/m-p/3592269#M828103</guid>
      <dc:creator>Indira Aramandla</dc:creator>
      <dc:date>2005-07-28T19:02:42Z</dc:date>
    </item>
    <item>
      <title>Re: Command to find the memory</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/command-to-find-the-memory/m-p/3592270#M828104</link>
      <description>hi,&lt;BR /&gt;&lt;BR /&gt;aside from pulling out the top of yr server .... &lt;BR /&gt;&lt;BR /&gt;try this:&lt;BR /&gt;&lt;BR /&gt;# dmesg|grep Physical&lt;BR /&gt;for total physical memory&lt;BR /&gt;&lt;BR /&gt;if u r running make_tape_recovery, run print_manifest command for other hardware, software and kernel info.&lt;BR /&gt;&lt;BR /&gt;or use sam -&amp;gt; Performance Monitor -&amp;gt; System Properties -&amp;gt; Memory tab &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;regards.</description>
      <pubDate>Thu, 28 Jul 2005 20:43:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/command-to-find-the-memory/m-p/3592270#M828104</guid>
      <dc:creator>Joseph Loo</dc:creator>
      <dc:date>2005-07-28T20:43:52Z</dc:date>
    </item>
    <item>
      <title>Re: Command to find the memory</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/command-to-find-the-memory/m-p/3592271#M828105</link>
      <description>You can get it by,&lt;BR /&gt;&lt;BR /&gt;1&amp;gt; sam -&amp;gt; performance monitor -&amp;gt; system properties -&amp;gt; memory tab&lt;BR /&gt;&lt;BR /&gt;2&amp;gt; dmesg | grep 'Phy'&lt;BR /&gt;&lt;BR /&gt;3&amp;gt; If ignite-ux installed,&lt;BR /&gt;     print_manifest&lt;BR /&gt;&lt;BR /&gt;4&amp;gt; If o/s version is 11.23 then,&lt;BR /&gt;    machinfo&lt;BR /&gt;&lt;BR /&gt;hth.</description>
      <pubDate>Fri, 29 Jul 2005 00:13:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/command-to-find-the-memory/m-p/3592271#M828105</guid>
      <dc:creator>Muthukumar_5</dc:creator>
      <dc:date>2005-07-29T00:13:43Z</dc:date>
    </item>
    <item>
      <title>Re: Command to find the memory</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/command-to-find-the-memory/m-p/3592272#M828106</link>
      <description>Hi Shiv,&lt;BR /&gt;&lt;BR /&gt;You can use dmesg or glance plus or stm all will give you system memory.&lt;BR /&gt;&lt;BR /&gt;Cheers!!!&lt;BR /&gt;eknath</description>
      <pubDate>Fri, 29 Jul 2005 04:24:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/command-to-find-the-memory/m-p/3592272#M828106</guid>
      <dc:creator>Eknath</dc:creator>
      <dc:date>2005-07-29T04:24:57Z</dc:date>
    </item>
    <item>
      <title>Re: Command to find the memory</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/command-to-find-the-memory/m-p/3592273#M828107</link>
      <description>Shiv&lt;BR /&gt;&lt;BR /&gt;easiest would be to fire up glance&lt;BR /&gt;or&lt;BR /&gt;dmesg | grep -i physical&lt;BR /&gt;&lt;BR /&gt;and the like&lt;BR /&gt;DP</description>
      <pubDate>Sun, 31 Jul 2005 01:26:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/command-to-find-the-memory/m-p/3592273#M828107</guid>
      <dc:creator>Devesh Pant_1</dc:creator>
      <dc:date>2005-07-31T01:26:27Z</dc:date>
    </item>
    <item>
      <title>Re: Command to find the memory</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/command-to-find-the-memory/m-p/3592274#M828108</link>
      <description>Hi Shiv,&lt;BR /&gt;&lt;BR /&gt;The most common procedure for the same are following three.&lt;BR /&gt;&lt;BR /&gt;#dmesg |grep Physical&lt;BR /&gt;&lt;BR /&gt;to know total memory installed in the ststem.&lt;BR /&gt;For detaled information regarding various physical modules installed in the system try.&lt;BR /&gt;&lt;BR /&gt;echo "selclass qualifier memory;info;wait;infolog"|cstm&lt;BR /&gt;&lt;BR /&gt;HTH,&lt;BR /&gt;Devender&lt;BR /&gt;</description>
      <pubDate>Sun, 31 Jul 2005 02:31:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/command-to-find-the-memory/m-p/3592274#M828108</guid>
      <dc:creator>Devender Khatana</dc:creator>
      <dc:date>2005-07-31T02:31:08Z</dc:date>
    </item>
    <item>
      <title>Re: Command to find the memory</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/command-to-find-the-memory/m-p/3592275#M828109</link>
      <description>Hi Shive&lt;BR /&gt;&lt;BR /&gt;1. #dmesg |grep physical is one of way of knowing physical memory in system&lt;BR /&gt;&lt;BR /&gt;2. #top can also give you an idea on system memory&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Mahesh</description>
      <pubDate>Sun, 31 Jul 2005 02:45:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/command-to-find-the-memory/m-p/3592275#M828109</guid>
      <dc:creator>Mahesh Kumar Malik</dc:creator>
      <dc:date>2005-07-31T02:45:25Z</dc:date>
    </item>
  </channel>
</rss>

