<?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: CPU,MEM info in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/cpu-mem-info/m-p/5214751#M465631</link>
    <description>hi,&lt;BR /&gt;&lt;BR /&gt;machinfo / print_manifest&lt;BR /&gt;&lt;BR /&gt;setboot -v / lvlnboot -v&lt;BR /&gt;&lt;BR /&gt;mikap</description>
    <pubDate>Wed, 16 Dec 2009 11:21:14 GMT</pubDate>
    <dc:creator>Michal Kapalka (mikap)</dc:creator>
    <dc:date>2009-12-16T11:21:14Z</dc:date>
    <item>
      <title>CPU,MEM info</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cpu-mem-info/m-p/5214749#M465629</link>
      <description>How to check how many cpu installed in the system ?&lt;BR /&gt;What is the command to find out Total memory installed?&lt;BR /&gt;What is the command to find out the bootdisk from which the system booted currently?&lt;BR /&gt;</description>
      <pubDate>Wed, 16 Dec 2009 11:09:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cpu-mem-info/m-p/5214749#M465629</guid>
      <dc:creator>kunjuttan</dc:creator>
      <dc:date>2009-12-16T11:09:41Z</dc:date>
    </item>
    <item>
      <title>Re: CPU,MEM info</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cpu-mem-info/m-p/5214750#M465630</link>
      <description>If you have Ignite installed, you can use the print_manifest command.&lt;BR /&gt;&lt;BR /&gt;You can also use SAM to display system properties (Sam -&amp;gt; Performance&lt;BR /&gt;Monitors -&amp;gt; System Properties).&lt;BR /&gt;&lt;BR /&gt;There are also utilities like "cfg2html" ( &lt;A href="http://come.to/cfg2html" target="_blank"&gt;http://come.to/cfg2html&lt;/A&gt; ),&lt;BR /&gt;"nickel" ( &lt;A href="ftp://ftp.hp.com/pub/catia/Utils/nickel.shar" target="_blank"&gt;ftp://ftp.hp.com/pub/catia/Utils/nickel.shar&lt;/A&gt; ) and "sysinfo"&lt;BR /&gt;( &lt;A href="http://hpux.cs.utah.edu/hppd/hpux/Sysadmin/sysinfo-3.3.1/" target="_blank"&gt;http://hpux.cs.utah.edu/hppd/hpux/Sysadmin/sysinfo-3.3.1/&lt;/A&gt; ).&lt;BR /&gt;&lt;BR /&gt;You can also obtain this information from the command line with a&lt;BR /&gt;series of little scripts like these:&lt;BR /&gt;&lt;BR /&gt;CPU&lt;BR /&gt;&lt;BR /&gt;HPUX=/stand/vmunix&lt;BR /&gt;&lt;BR /&gt;MODEL=$(grep -i $(model | tr "/" " " \&lt;BR /&gt;        | awk '{print $NF}') \&lt;BR /&gt;        /usr/sam/lib/mo/sched.models \&lt;BR /&gt;        | awk '{print $NF}')&lt;BR /&gt;&lt;BR /&gt;                                      #Note: for 11.23 RISC, use&lt;BR /&gt;MHZ=$(echo itick_per_tick/D \         # echo "itick_per_usec/d" \&lt;BR /&gt;        | adb -k $HPUX /dev/kmem \    # | adb $HPUX /dev/kmem&lt;BR /&gt;        | tail -1 \                   #For Itanium, use machinfo&lt;BR /&gt;        | awk '{print $2/10000}')&lt;BR /&gt;echo `hostname` has `ioscan -k |grep -n processor \&lt;BR /&gt;        |wc -l` $MODEL $MHZ  "Mhz processor(s)"&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Number of CPUs&lt;BR /&gt;&lt;BR /&gt;ioscan -k |grep -n processor |wc -l&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Support Tools Manager (STM) CPU info:&lt;BR /&gt;&lt;BR /&gt;echo "selclass qualifier cpu;info;wait;infolog" | cstm&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;RAM&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;Support Tools Manager (STM) RAM info:&lt;BR /&gt;&lt;BR /&gt;echo "selclass qualifier memory;info;wait;infolog" | cstm&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;You can obtain CPU speed and RAM without CSTM or root access as described by Tom&lt;BR /&gt; Ferony (under Nancy Rippey's login) here:&lt;BR /&gt;&lt;A href="http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=851889" target="_blank"&gt;http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=851889&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Pete&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 16 Dec 2009 11:19:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cpu-mem-info/m-p/5214750#M465630</guid>
      <dc:creator>Pete Randall</dc:creator>
      <dc:date>2009-12-16T11:19:20Z</dc:date>
    </item>
    <item>
      <title>Re: CPU,MEM info</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cpu-mem-info/m-p/5214751#M465631</link>
      <description>hi,&lt;BR /&gt;&lt;BR /&gt;machinfo / print_manifest&lt;BR /&gt;&lt;BR /&gt;setboot -v / lvlnboot -v&lt;BR /&gt;&lt;BR /&gt;mikap</description>
      <pubDate>Wed, 16 Dec 2009 11:21:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cpu-mem-info/m-p/5214751#M465631</guid>
      <dc:creator>Michal Kapalka (mikap)</dc:creator>
      <dc:date>2009-12-16T11:21:14Z</dc:date>
    </item>
    <item>
      <title>Re: CPU,MEM info</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cpu-mem-info/m-p/5214752#M465632</link>
      <description>You could use glance to query the memory and cpu availability.&lt;BR /&gt;&lt;BR /&gt;HTH&lt;BR /&gt;&lt;BR /&gt;Berd</description>
      <pubDate>Wed, 16 Dec 2009 11:21:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cpu-mem-info/m-p/5214752#M465632</guid>
      <dc:creator>Berd</dc:creator>
      <dc:date>2009-12-16T11:21:38Z</dc:date>
    </item>
    <item>
      <title>Re: CPU,MEM info</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cpu-mem-info/m-p/5214753#M465633</link>
      <description>On IA64 servers use machinfo:&lt;BR /&gt;&lt;BR /&gt;# machinfo&lt;BR /&gt;CPU info:&lt;BR /&gt;  2 Intel(R) Itanium 2 9100 series processors (1.67 GHz, 18 MB)&lt;BR /&gt;          666 MT/s bus, CPU version A1&lt;BR /&gt;          4 logical processors (2 per socket)&lt;BR /&gt;&lt;BR /&gt;Memory: 16363 MB (15.98 GB)&lt;BR /&gt;...&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;On HP9000 with 11.31 you can use that too.</description>
      <pubDate>Wed, 16 Dec 2009 14:09:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cpu-mem-info/m-p/5214753#M465633</guid>
      <dc:creator>Torsten.</dc:creator>
      <dc:date>2009-12-16T14:09:30Z</dc:date>
    </item>
    <item>
      <title>Re: CPU,MEM info</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cpu-mem-info/m-p/5214754#M465634</link>
      <description>Thanks to all.I got it.</description>
      <pubDate>Thu, 17 Dec 2009 05:49:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cpu-mem-info/m-p/5214754#M465634</guid>
      <dc:creator>kunjuttan</dc:creator>
      <dc:date>2009-12-17T05:49:49Z</dc:date>
    </item>
    <item>
      <title>Re: CPU,MEM info</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cpu-mem-info/m-p/5214755#M465635</link>
      <description>Thanks to all.I got it.</description>
      <pubDate>Fri, 18 Dec 2009 05:51:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cpu-mem-info/m-p/5214755#M465635</guid>
      <dc:creator>kunjuttan</dc:creator>
      <dc:date>2009-12-18T05:51:31Z</dc:date>
    </item>
  </channel>
</rss>

