<?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 CPU info in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/cpu-info/m-p/3664603#M242628</link>
    <description>How to get text version of all the information that can be viewed from SAM -&amp;gt; Performance Monitors -&amp;gt; System Properties?&lt;BR /&gt;&lt;BR /&gt;Thank you.</description>
    <pubDate>Fri, 04 Nov 2005 09:56:10 GMT</pubDate>
    <dc:creator>Olga_1</dc:creator>
    <dc:date>2005-11-04T09:56:10Z</dc:date>
    <item>
      <title>CPU info</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cpu-info/m-p/3664603#M242628</link>
      <description>How to get text version of all the information that can be viewed from SAM -&amp;gt; Performance Monitors -&amp;gt; System Properties?&lt;BR /&gt;&lt;BR /&gt;Thank you.</description>
      <pubDate>Fri, 04 Nov 2005 09:56:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cpu-info/m-p/3664603#M242628</guid>
      <dc:creator>Olga_1</dc:creator>
      <dc:date>2005-11-04T09:56:10Z</dc:date>
    </item>
    <item>
      <title>Re: CPU info</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cpu-info/m-p/3664604#M242629</link>
      <description>For PA-RISC systems&lt;BR /&gt;&lt;BR /&gt;For CPU&lt;BR /&gt;echo "selclass qualifier cpu;info;wait;infolog" | /usr/sbin/cstm&lt;BR /&gt;&lt;BR /&gt;Fopr memory&lt;BR /&gt;echo "selclass type memory;info;wait;infolog" | cstm&lt;BR /&gt;&lt;BR /&gt;For disksecho "selclass type disk;info;wait;infolog" | cstm&lt;BR /&gt;&lt;BR /&gt;Other options are available as well.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;If running a ia64 system, use /usr/contrib/bin/machinfo&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 04 Nov 2005 10:00:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cpu-info/m-p/3664604#M242629</guid>
      <dc:creator>Rick Garland</dc:creator>
      <dc:date>2005-11-04T10:00:16Z</dc:date>
    </item>
    <item>
      <title>Re: CPU info</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cpu-info/m-p/3664605#M242630</link>
      <description>not exactly sure what exactly you are looking for but cstm is the tool to use for that&lt;BR /&gt;&lt;BR /&gt;just run it and at the prompt &lt;BR /&gt;&lt;BR /&gt;cstm&amp;gt; info&lt;BR /&gt;cstm&amp;gt; il&lt;BR /&gt;&lt;BR /&gt;as two commands. You will see all the necessary and unnecessary information on your screen, which you can capture. You need to process the information for nicely formatted output like same gives, as this tool provides you the almost raw hardware information.&lt;BR /&gt;&lt;BR /&gt;HTH</description>
      <pubDate>Fri, 04 Nov 2005 10:01:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cpu-info/m-p/3664605#M242630</guid>
      <dc:creator>Mel Burslan</dc:creator>
      <dc:date>2005-11-04T10:01:10Z</dc:date>
    </item>
    <item>
      <title>Re: CPU info</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cpu-info/m-p/3664606#M242631</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;Finally, 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;MHZ=$(echo itick_per_tick/D \&lt;BR /&gt;        | adb -k $HPUX /dev/kmem \&lt;BR /&gt;| tail -1 \&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;&lt;BR /&gt;&lt;BR /&gt;RAM&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;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;&lt;BR /&gt;And, even more finally, you can obtain CPU speed and RAM without CSTM or root ac&lt;BR /&gt;cess as described by Nancy Rippey 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;</description>
      <pubDate>Fri, 04 Nov 2005 10:28:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cpu-info/m-p/3664606#M242631</guid>
      <dc:creator>Pete Randall</dc:creator>
      <dc:date>2005-11-04T10:28:02Z</dc:date>
    </item>
    <item>
      <title>Re: CPU info</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cpu-info/m-p/3664607#M242632</link>
      <description>Hi Olga ,&lt;BR /&gt;&lt;BR /&gt;You can also use the hp collection.sh script , a very good script to collect data and also use to diagnose and trouble shooting problems and also checks crashdumps.&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;Raj.&lt;BR /&gt;</description>
      <pubDate>Sat, 05 Nov 2005 14:30:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cpu-info/m-p/3664607#M242632</guid>
      <dc:creator>Raj D.</dc:creator>
      <dc:date>2005-11-05T14:30:38Z</dc:date>
    </item>
  </channel>
</rss>

