<?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: hwconfig command line for hpux 11i in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/hwconfig-command-line-for-hpux-11i/m-p/4298844#M337788</link>
    <description>The first command is ioscan. Use -k to look at the current I/O list (and to run at full speed), leave off -k to ask every driver to search for hardware changes:&lt;BR /&gt; &lt;BR /&gt;ioscan -knf&lt;BR /&gt; &lt;BR /&gt;The -k option allows anyone to run ioscan. Without -k, only root can run the command. Here is a (very detailed) list of the hardware including CPU, disk, tape, RAM, network cards.&lt;BR /&gt; &lt;BR /&gt;echo "selclass qualifier all;info;wait;infolog" | cstm&lt;BR /&gt; &lt;BR /&gt;A simpler list is found with the command:&lt;BR /&gt; &lt;BR /&gt;print_manifest&lt;BR /&gt; &lt;BR /&gt;If you do not have print_manifest, then use the full path:&lt;BR /&gt; &lt;BR /&gt;/opt/ignite/bin/print_manifest&lt;BR /&gt; &lt;BR /&gt;If you do not have /opt/ignite/bin, your system is a great risk if there is a boot disk failure. Be sure to download it and learn about how to use it. &lt;BR /&gt; &lt;BR /&gt;And finally, you can use sam. Just select Performance Monitors -&amp;gt; System Properties.</description>
    <pubDate>Mon, 03 Nov 2008 04:24:16 GMT</pubDate>
    <dc:creator>Bill Hassell</dc:creator>
    <dc:date>2008-11-03T04:24:16Z</dc:date>
    <item>
      <title>hwconfig command line for hpux 11i</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/hwconfig-command-line-for-hpux-11i/m-p/4298842#M337786</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;There is a command something like hwconfig to find out the server hardware configuration such as hard disk, memory, etc.&lt;BR /&gt;&lt;BR /&gt;What is the correct command line for hpux 11i?&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Chui</description>
      <pubDate>Mon, 03 Nov 2008 04:09:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/hwconfig-command-line-for-hpux-11i/m-p/4298842#M337786</guid>
      <dc:creator>Chui Kock You_1</dc:creator>
      <dc:date>2008-11-03T04:09:41Z</dc:date>
    </item>
    <item>
      <title>Re: hwconfig command line for hpux 11i</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/hwconfig-command-line-for-hpux-11i/m-p/4298843#M337787</link>
      <description>for memory&lt;BR /&gt;&lt;BR /&gt;#echo "selclass qualifier memory;info;wait;infolog"|cstm&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;for CPU info&lt;BR /&gt;&lt;BR /&gt;cstm&amp;gt;SelClass type "Processor" qualifier "CPU" hwpath ""&lt;BR /&gt;cstm&amp;gt;Information ; wait&lt;BR /&gt;-- Updating Map --&lt;BR /&gt;Updating Map...&lt;BR /&gt;cstm&amp;gt;InfoLog&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;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;&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 Ferony (under Nancy Rippey's log&lt;BR /&gt;in) 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;And then if u wanted to refer a link for the same .... follow the below link which would give u exactly the same info which I have done a copy &amp;amp; a paste&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums11.itrc.hp.com/service/forums/questionanswer.do?threadId=1238211" target="_blank"&gt;http://forums11.itrc.hp.com/service/forums/questionanswer.do?threadId=1238211&lt;/A&gt;</description>
      <pubDate>Mon, 03 Nov 2008 04:19:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/hwconfig-command-line-for-hpux-11i/m-p/4298843#M337787</guid>
      <dc:creator>Grayh</dc:creator>
      <dc:date>2008-11-03T04:19:02Z</dc:date>
    </item>
    <item>
      <title>Re: hwconfig command line for hpux 11i</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/hwconfig-command-line-for-hpux-11i/m-p/4298844#M337788</link>
      <description>The first command is ioscan. Use -k to look at the current I/O list (and to run at full speed), leave off -k to ask every driver to search for hardware changes:&lt;BR /&gt; &lt;BR /&gt;ioscan -knf&lt;BR /&gt; &lt;BR /&gt;The -k option allows anyone to run ioscan. Without -k, only root can run the command. Here is a (very detailed) list of the hardware including CPU, disk, tape, RAM, network cards.&lt;BR /&gt; &lt;BR /&gt;echo "selclass qualifier all;info;wait;infolog" | cstm&lt;BR /&gt; &lt;BR /&gt;A simpler list is found with the command:&lt;BR /&gt; &lt;BR /&gt;print_manifest&lt;BR /&gt; &lt;BR /&gt;If you do not have print_manifest, then use the full path:&lt;BR /&gt; &lt;BR /&gt;/opt/ignite/bin/print_manifest&lt;BR /&gt; &lt;BR /&gt;If you do not have /opt/ignite/bin, your system is a great risk if there is a boot disk failure. Be sure to download it and learn about how to use it. &lt;BR /&gt; &lt;BR /&gt;And finally, you can use sam. Just select Performance Monitors -&amp;gt; System Properties.</description>
      <pubDate>Mon, 03 Nov 2008 04:24:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/hwconfig-command-line-for-hpux-11i/m-p/4298844#M337788</guid>
      <dc:creator>Bill Hassell</dc:creator>
      <dc:date>2008-11-03T04:24:16Z</dc:date>
    </item>
    <item>
      <title>Re: hwconfig command line for hpux 11i</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/hwconfig-command-line-for-hpux-11i/m-p/4298845#M337789</link>
      <description>HI Chui,&lt;BR /&gt;&lt;BR /&gt;There are several tools available in HP-UX.&lt;BR /&gt;&lt;BR /&gt;e.g.&lt;BR /&gt;&lt;BR /&gt;--&amp;gt;Nickel report--- &lt;BR /&gt;&lt;BR /&gt;Its very good script for system information. You can try the HP Nickel script ,it generates the report in HTML format ,download it from the below site &lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://hpux.connect.org.uk/" target="_blank"&gt;http://hpux.connect.org.uk/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;--&amp;gt;sysinfo&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://hpux.connect.org.uk/hppd/hpux/Sysadmin/sysinfo-3.3.1/" target="_blank"&gt;http://hpux.connect.org.uk/hppd/hpux/Sysadmin/sysinfo-3.3.1/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;--&amp;gt; "print_manifest" command &lt;BR /&gt;&lt;BR /&gt;--&amp;gt; cfg2html from: &lt;A href="http://come.to/cfg2html" target="_blank"&gt;http://come.to/cfg2html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Asif Sharif&lt;BR /&gt;</description>
      <pubDate>Mon, 03 Nov 2008 04:25:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/hwconfig-command-line-for-hpux-11i/m-p/4298845#M337789</guid>
      <dc:creator>Asif Sharif</dc:creator>
      <dc:date>2008-11-03T04:25:32Z</dc:date>
    </item>
  </channel>
</rss>

