<?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: checking processors details in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/checking-processors-details/m-p/3316311#M876804</link>
    <description>My script (attached) most recent version always available on my site ( &lt;A href="http://mirrors.develooper.com/hpux/#FAQ" target="_blank"&gt;http://mirrors.develooper.com/hpux/#FAQ&lt;/A&gt; ) does this:&lt;BR /&gt;&lt;BR /&gt;a5:/ 101 # ux&lt;BR /&gt;a5  HP-UX 11.00/64 U  9000/800/A500-7X/64 PA8700/750(2) pa-2.0  2048 Mb&lt;BR /&gt;a5:/ 102 #&lt;BR /&gt;&lt;BR /&gt;And it contains all the knowledge you need to know. The FAQ link has much more info&lt;BR /&gt;&lt;BR /&gt;Enjoy, Have FUN! H.Merijn</description>
    <pubDate>Tue, 29 Jun 2004 01:54:50 GMT</pubDate>
    <dc:creator>H.Merijn Brand (procura</dc:creator>
    <dc:date>2004-06-29T01:54:50Z</dc:date>
    <item>
      <title>checking processors details</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/checking-processors-details/m-p/3316300#M876793</link>
      <description>hello,&lt;BR /&gt;i'm looking for commands to check proccesors details (number of processor, speed etc) in hpux 11 and 11i systems.&lt;BR /&gt;i'd like to get more then one way to apply this task.&lt;BR /&gt;thanks&lt;BR /&gt;Itai</description>
      <pubDate>Sun, 27 Jun 2004 10:14:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/checking-processors-details/m-p/3316300#M876793</guid>
      <dc:creator>itai weisman</dc:creator>
      <dc:date>2004-06-27T10:14:17Z</dc:date>
    </item>
    <item>
      <title>Re: checking processors details</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/checking-processors-details/m-p/3316301#M876794</link>
      <description>ioscan&lt;BR /&gt;dmesg&lt;BR /&gt;&lt;BR /&gt;Regds,&lt;BR /&gt;&lt;BR /&gt;Kaps</description>
      <pubDate>Sun, 27 Jun 2004 10:19:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/checking-processors-details/m-p/3316301#M876794</guid>
      <dc:creator>KapilRaj</dc:creator>
      <dc:date>2004-06-27T10:19:03Z</dc:date>
    </item>
    <item>
      <title>Re: checking processors details</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/checking-processors-details/m-p/3316302#M876795</link>
      <description>if you have diagnostics loaded you can a lot of that using cstm&lt;BR /&gt;&lt;BR /&gt;not sure of the syntax at the moment but it is something like&lt;BR /&gt;&lt;BR /&gt;cstm "selclass cpu;info;infolog"&lt;BR /&gt;&lt;BR /&gt;i'll have to boot up a system to get you exact syntax</description>
      <pubDate>Sun, 27 Jun 2004 10:32:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/checking-processors-details/m-p/3316302#M876795</guid>
      <dc:creator>curt larson_1</dc:creator>
      <dc:date>2004-06-27T10:32:46Z</dc:date>
    </item>
    <item>
      <title>Re: checking processors details</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/checking-processors-details/m-p/3316303#M876796</link>
      <description>looks like you need to do this&lt;BR /&gt;&lt;BR /&gt;echo "selclass qualifier cpu;info;wait;infolog" | /usr/sbin/cstm&lt;BR /&gt;&lt;BR /&gt;can do the same for other things by specifing another qualifier, such as&lt;BR /&gt;&lt;BR /&gt;selclass qualifier  memory for memory&lt;BR /&gt;selclass qualifier all for lots of stuff&lt;BR /&gt;selclass qualifier disk, etc</description>
      <pubDate>Sun, 27 Jun 2004 10:44:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/checking-processors-details/m-p/3316303#M876796</guid>
      <dc:creator>curt larson_1</dc:creator>
      <dc:date>2004-06-27T10:44:24Z</dc:date>
    </item>
    <item>
      <title>Re: checking processors details</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/checking-processors-details/m-p/3316304#M876797</link>
      <description>a few other ways&lt;BR /&gt;&lt;BR /&gt;#echo "processor_count/D" | adb -k /stand/vmunix /dev/mem&lt;BR /&gt;&lt;BR /&gt;ioscan -fnC processor | grep -c processor&lt;BR /&gt;&lt;BR /&gt;sar -Mu 1 1 | awk 'END {print NR-5}' &lt;BR /&gt;&lt;BR /&gt;and&lt;BR /&gt;&lt;BR /&gt;echo "itick_per_tick/D" | adb -k /stand/vmunix /dev/kem | tr "\012" " " | awk '{print $3}'&lt;BR /&gt;#divide by 10000 to get cpu speed in MHz&lt;BR /&gt;&lt;BR /&gt;echo "processor_count/D" | adb -k /stand/vmunix /dev/kem | tr "\012" " " | awk '{print $3}'&lt;BR /&gt;&lt;BR /&gt;echo "memory_installed_in_machine/D" | adb -k /stand/vmunix /dev/kem | tr "\012" " " | awk '{print $3}'&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Sun, 27 Jun 2004 11:08:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/checking-processors-details/m-p/3316304#M876797</guid>
      <dc:creator>curt larson_1</dc:creator>
      <dc:date>2004-06-27T11:08:56Z</dc:date>
    </item>
    <item>
      <title>Re: checking processors details</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/checking-processors-details/m-p/3316305#M876798</link>
      <description>hey, thanks a lot,&lt;BR /&gt;where can i read about ctsm?&lt;BR /&gt;</description>
      <pubDate>Sun, 27 Jun 2004 11:36:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/checking-processors-details/m-p/3316305#M876798</guid>
      <dc:creator>itai weisman</dc:creator>
      <dc:date>2004-06-27T11:36:40Z</dc:date>
    </item>
    <item>
      <title>Re: checking processors details</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/checking-processors-details/m-p/3316306#M876799</link>
      <description>Hi,&lt;BR /&gt;See the links below for help on CSTM.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://docs.hp.com/cgi-bin/otsearch/getfile?id=/hpux/onlinedocs/diag/stm/sth_cstm.htm&amp;amp;searchterms=cstm&amp;amp;queryid=20040627-110829" target="_blank"&gt;http://docs.hp.com/cgi-bin/otsearch/getfile?id=/hpux/onlinedocs/diag/stm/sth_cstm.htm&amp;amp;searchterms=cstm&amp;amp;queryid=20040627-110829&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://docs.hp.com/cgi-bin/otsearch/getfile?id=/hpux/onlinedocs/diag/stm/stt_ccomm.htm&amp;amp;searchterms=cstm&amp;amp;queryid=20040627-111533" target="_blank"&gt;http://docs.hp.com/cgi-bin/otsearch/getfile?id=/hpux/onlinedocs/diag/stm/stt_ccomm.htm&amp;amp;searchterms=cstm&amp;amp;queryid=20040627-111533&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Hope that helps.&lt;BR /&gt;Regards,</description>
      <pubDate>Sun, 27 Jun 2004 12:16:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/checking-processors-details/m-p/3316306#M876799</guid>
      <dc:creator>Bharat Katkar</dc:creator>
      <dc:date>2004-06-27T12:16:35Z</dc:date>
    </item>
    <item>
      <title>Re: checking processors details</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/checking-processors-details/m-p/3316307#M876800</link>
      <description>Hi Itai,&lt;BR /&gt;&lt;BR /&gt;You can get complete information on Diagnostics from this URL.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://docs.hp.com/hpux/diag/index.html" target="_blank"&gt;http://docs.hp.com/hpux/diag/index.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;You may also want to try SysInfo, cfg2html to get good summary of your system. See if you have /opt/ignite/bin/print_manifest. If so, run it and see if it gives you the required information.&lt;BR /&gt;&lt;BR /&gt;-Sri</description>
      <pubDate>Sun, 27 Jun 2004 12:21:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/checking-processors-details/m-p/3316307#M876800</guid>
      <dc:creator>Sridhar Bhaskarla</dc:creator>
      <dc:date>2004-06-27T12:21:29Z</dc:date>
    </item>
    <item>
      <title>Re: checking processors details</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/checking-processors-details/m-p/3316308#M876801</link>
      <description>Addeding couple:&lt;BR /&gt;&lt;BR /&gt;root:# ioscan -fnC processor&lt;BR /&gt;Class       I  H/W Path  Driver    S/W State H/W Type  Description&lt;BR /&gt;===================================================================&lt;BR /&gt;processor   0  160       processor CLAIMED   PROCESSOR Processor&lt;BR /&gt;processor   1  166       processor CLAIMED   PROCESSOR Processor&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;root:ecom2# model&lt;BR /&gt;9000/800/L2000-44&lt;BR /&gt;&lt;BR /&gt;/usr/local/bin&lt;BR /&gt;root:# uname -m&lt;BR /&gt;9000/800&lt;BR /&gt;</description>
      <pubDate>Mon, 28 Jun 2004 11:55:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/checking-processors-details/m-p/3316308#M876801</guid>
      <dc:creator>Rory R Hammond</dc:creator>
      <dc:date>2004-06-28T11:55:35Z</dc:date>
    </item>
    <item>
      <title>Re: checking processors details</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/checking-processors-details/m-p/3316309#M876802</link>
      <description>Here's a good little script called hpmem - uses adb and requires root:&lt;BR /&gt;&lt;BR /&gt;# hpmem&lt;BR /&gt;HP-UX pc0003 B.11.11 U 9000/800 2504392627 unlimited-user license&lt;BR /&gt;CPU Count: 6&lt;BR /&gt;CPU Speed: 750 MHz&lt;BR /&gt;CPU HW Support: 64-bit&lt;BR /&gt;Kernel Support: 64-bit&lt;BR /&gt;RAM Size: 10080 MB&lt;BR /&gt;bufpages: 806 MB&lt;BR /&gt;maxuprc: 800&lt;BR /&gt;maxvgs: 128&lt;BR /&gt;maxfiles: 2048&lt;BR /&gt;max_thread_proc: 256&lt;BR /&gt;nfile: 189100&lt;BR /&gt;nflock: 1200&lt;BR /&gt;nproc: 2560&lt;BR /&gt;ninode: 16384&lt;BR /&gt;shmmax: 1073741824&lt;BR /&gt;shmmni: 256&lt;BR /&gt;dbc_max_pct: 8&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Rgds....Geoff</description>
      <pubDate>Mon, 28 Jun 2004 14:49:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/checking-processors-details/m-p/3316309#M876802</guid>
      <dc:creator>Geoff Wild</dc:creator>
      <dc:date>2004-06-28T14:49:19Z</dc:date>
    </item>
    <item>
      <title>Re: checking processors details</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/checking-processors-details/m-p/3316310#M876803</link>
      <description>where is this script, i can't find it?&lt;BR /&gt;</description>
      <pubDate>Tue, 29 Jun 2004 01:48:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/checking-processors-details/m-p/3316310#M876803</guid>
      <dc:creator>itai weisman</dc:creator>
      <dc:date>2004-06-29T01:48:49Z</dc:date>
    </item>
    <item>
      <title>Re: checking processors details</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/checking-processors-details/m-p/3316311#M876804</link>
      <description>My script (attached) most recent version always available on my site ( &lt;A href="http://mirrors.develooper.com/hpux/#FAQ" target="_blank"&gt;http://mirrors.develooper.com/hpux/#FAQ&lt;/A&gt; ) does this:&lt;BR /&gt;&lt;BR /&gt;a5:/ 101 # ux&lt;BR /&gt;a5  HP-UX 11.00/64 U  9000/800/A500-7X/64 PA8700/750(2) pa-2.0  2048 Mb&lt;BR /&gt;a5:/ 102 #&lt;BR /&gt;&lt;BR /&gt;And it contains all the knowledge you need to know. The FAQ link has much more info&lt;BR /&gt;&lt;BR /&gt;Enjoy, Have FUN! H.Merijn</description>
      <pubDate>Tue, 29 Jun 2004 01:54:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/checking-processors-details/m-p/3316311#M876804</guid>
      <dc:creator>H.Merijn Brand (procura</dc:creator>
      <dc:date>2004-06-29T01:54:50Z</dc:date>
    </item>
    <item>
      <title>Re: checking processors details</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/checking-processors-details/m-p/3316312#M876805</link>
      <description>hai,&lt;BR /&gt;&lt;BR /&gt; We can get the processor count and binding status with the mpsched -s and mpsched -q command executions.&lt;BR /&gt;&lt;BR /&gt; We can get the CPU bits and model with uname -i and getconf (CPU_CHIP_TYPE,HW_CPU_SUPP_BITS)&lt;BR /&gt;&lt;BR /&gt; We can use machinfo command to get all machine informations with the CPU informations.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Muthukumar.</description>
      <pubDate>Tue, 29 Jun 2004 02:13:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/checking-processors-details/m-p/3316312#M876805</guid>
      <dc:creator>Muthukumar_5</dc:creator>
      <dc:date>2004-06-29T02:13:33Z</dc:date>
    </item>
    <item>
      <title>Re: checking processors details</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/checking-processors-details/m-p/3316313#M876806</link>
      <description>Hello Itai, &lt;BR /&gt;&lt;BR /&gt;For no of processor  #top&lt;BR /&gt;&lt;BR /&gt;Other commands&lt;BR /&gt;#ioscan&lt;BR /&gt;#dmesg&lt;BR /&gt;&lt;BR /&gt;for finding the whether OS is 32 or 64 bit &lt;BR /&gt;&lt;BR /&gt;#getconf KERNEL_BITS&lt;BR /&gt;&lt;BR /&gt;Thanks and regards&lt;BR /&gt;Shine&lt;BR /&gt;</description>
      <pubDate>Tue, 29 Jun 2004 15:03:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/checking-processors-details/m-p/3316313#M876806</guid>
      <dc:creator>Shine_5</dc:creator>
      <dc:date>2004-06-29T15:03:47Z</dc:date>
    </item>
    <item>
      <title>Re: checking processors details</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/checking-processors-details/m-p/3316314#M876807</link>
      <description>Itai,&lt;BR /&gt;&lt;BR /&gt;Did you get the hpmem script?  It was attached to my post above.&lt;BR /&gt;&lt;BR /&gt;Here's another command as well that tells you the PA CPU Model...:&lt;BR /&gt;&lt;BR /&gt;/usr/sbin/diag/contrib/pdcinfo -no_banner&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Rgds...Geoff</description>
      <pubDate>Tue, 29 Jun 2004 16:33:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/checking-processors-details/m-p/3316314#M876807</guid>
      <dc:creator>Geoff Wild</dc:creator>
      <dc:date>2004-06-29T16:33:48Z</dc:date>
    </item>
    <item>
      <title>Re: checking processors details</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/checking-processors-details/m-p/3316315#M876808</link>
      <description>yes i got it, thanks a lot,&lt;BR /&gt;i didn't have the chance to check it yet.&lt;BR /&gt;</description>
      <pubDate>Tue, 29 Jun 2004 22:30:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/checking-processors-details/m-p/3316315#M876808</guid>
      <dc:creator>itai weisman</dc:creator>
      <dc:date>2004-06-29T22:30:07Z</dc:date>
    </item>
  </channel>
</rss>

