<?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: Determine number of CPUs on the system in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/determine-number-of-cpus-on-the-system/m-p/2662555#M48739</link>
    <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Check this out:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x15aca2db8513d6118ff40090279cd0f9,00.html" target="_blank"&gt;http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x15aca2db8513d6118ff40090279cd0f9,00.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;HTH,&lt;BR /&gt;Shiju&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Mon, 11 Feb 2002 18:35:11 GMT</pubDate>
    <dc:creator>Helen French</dc:creator>
    <dc:date>2002-02-11T18:35:11Z</dc:date>
    <item>
      <title>Determine number of CPUs on the system</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/determine-number-of-cpus-on-the-system/m-p/2662553#M48737</link>
      <description>Does anyone know is there is a utility that can be used in a script that will list the number of CPUs on the system (optinally with the clock speed) similar to the way "top" lists them out.  I tried piping the output from top -d1 into a file, but it gets all jumbled up.  Any help would be much appreciated.  Thank you in advance.</description>
      <pubDate>Mon, 11 Feb 2002 18:28:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/determine-number-of-cpus-on-the-system/m-p/2662553#M48737</guid>
      <dc:creator>Weary in West Chester</dc:creator>
      <dc:date>2002-02-11T18:28:18Z</dc:date>
    </item>
    <item>
      <title>Re: Determine number of CPUs on the system</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/determine-number-of-cpus-on-the-system/m-p/2662554#M48738</link>
      <description>To find processor speed&lt;BR /&gt;&lt;BR /&gt;echo itick_per_usec/D | adb -k /stand/vmunix /dev/mem&lt;BR /&gt;&lt;BR /&gt;To find # of processors used&lt;BR /&gt;&lt;BR /&gt;echo runningprocs/D | adb -k /stand/vmunix /dev/mem&lt;BR /&gt;&lt;BR /&gt;Hope this helps,&lt;BR /&gt;C</description>
      <pubDate>Mon, 11 Feb 2002 18:31:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/determine-number-of-cpus-on-the-system/m-p/2662554#M48738</guid>
      <dc:creator>Craig Rants</dc:creator>
      <dc:date>2002-02-11T18:31:44Z</dc:date>
    </item>
    <item>
      <title>Re: Determine number of CPUs on the system</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/determine-number-of-cpus-on-the-system/m-p/2662555#M48739</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Check this out:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x15aca2db8513d6118ff40090279cd0f9,00.html" target="_blank"&gt;http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x15aca2db8513d6118ff40090279cd0f9,00.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;HTH,&lt;BR /&gt;Shiju&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 11 Feb 2002 18:35:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/determine-number-of-cpus-on-the-system/m-p/2662555#M48739</guid>
      <dc:creator>Helen French</dc:creator>
      <dc:date>2002-02-11T18:35:11Z</dc:date>
    </item>
    <item>
      <title>Re: Determine number of CPUs on the system</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/determine-number-of-cpus-on-the-system/m-p/2662556#M48740</link>
      <description>Hi:&lt;BR /&gt;&lt;BR /&gt;For the number of CPUs (by root or by a non-privileged user):&lt;BR /&gt;&lt;BR /&gt;# sar -M 1 1|awk 'END {print NR-5}'&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Mon, 11 Feb 2002 18:36:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/determine-number-of-cpus-on-the-system/m-p/2662556#M48740</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2002-02-11T18:36:10Z</dc:date>
    </item>
    <item>
      <title>Re: Determine number of CPUs on the system</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/determine-number-of-cpus-on-the-system/m-p/2662557#M48741</link>
      <description>hi,&lt;BR /&gt;&lt;BR /&gt;You can list the no of processors on the system using ioscan too,&lt;BR /&gt;&lt;BR /&gt;ioscan -fn |grep processor |wc -l&lt;BR /&gt;&lt;BR /&gt;to get the processor speed,&lt;BR /&gt;&lt;BR /&gt;- For HP-UX 9.x:&lt;BR /&gt;echo itick_per_usec/D | adb -k /hp-ux /dev/mem,&lt;BR /&gt;&lt;BR /&gt;for 10.x and above&lt;BR /&gt;echo itick_per_usec/D | adb -k /stand/vmunix dev/mem&lt;BR /&gt;&lt;BR /&gt;Hope this helps.&lt;BR /&gt;&lt;BR /&gt;Regds&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 11 Feb 2002 18:43:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/determine-number-of-cpus-on-the-system/m-p/2662557#M48741</guid>
      <dc:creator>Sanjay_6</dc:creator>
      <dc:date>2002-02-11T18:43:47Z</dc:date>
    </item>
    <item>
      <title>Re: Determine number of CPUs on the system</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/determine-number-of-cpus-on-the-system/m-p/2662558#M48742</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;Use the top command and grep what you want !!!&lt;BR /&gt;&lt;BR /&gt;# top 10&lt;BR /&gt;&lt;BR /&gt;Rgds / James&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 11 Feb 2002 18:46:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/determine-number-of-cpus-on-the-system/m-p/2662558#M48742</guid>
      <dc:creator>James George_1</dc:creator>
      <dc:date>2002-02-11T18:46:59Z</dc:date>
    </item>
    <item>
      <title>Re: Determine number of CPUs on the system</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/determine-number-of-cpus-on-the-system/m-p/2662559#M48743</link>
      <description>I don't know what OS and system you are running - but with Solaris2.6 (there is probably an equivalent for what you are using) I can run the following command to get the speed and number of my CPUs - you may just need to cut what you want from the output:&lt;BR /&gt;&lt;BR /&gt;/usr/platform/sun4u/sbin/prtdiag -v</description>
      <pubDate>Mon, 11 Feb 2002 19:53:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/determine-number-of-cpus-on-the-system/m-p/2662559#M48743</guid>
      <dc:creator>Kerilyn O'Donnell</dc:creator>
      <dc:date>2002-02-11T19:53:50Z</dc:date>
    </item>
    <item>
      <title>Re: Determine number of CPUs on the system</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/determine-number-of-cpus-on-the-system/m-p/2662560#M48744</link>
      <description>You guys are the best.  Don't ever give up your day jobs or we'll all be screwed.  Thanks for all your help.</description>
      <pubDate>Wed, 13 Feb 2002 18:33:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/determine-number-of-cpus-on-the-system/m-p/2662560#M48744</guid>
      <dc:creator>Weary in West Chester</dc:creator>
      <dc:date>2002-02-13T18:33:18Z</dc:date>
    </item>
  </channel>
</rss>

