<?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 info for  PA-RISC in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/info-for-pa-risc/m-p/4451937#M358802</link>
    <description>Could anybody tell how to get info for  PA-RISC server architecture hpux 11.11. I know the print manifest command works, but if ignite is not installed .. what we do</description>
    <pubDate>Thu, 02 Jul 2009 13:50:03 GMT</pubDate>
    <dc:creator>gany59</dc:creator>
    <dc:date>2009-07-02T13:50:03Z</dc:date>
    <item>
      <title>info for  PA-RISC</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/info-for-pa-risc/m-p/4451937#M358802</link>
      <description>Could anybody tell how to get info for  PA-RISC server architecture hpux 11.11. I know the print manifest command works, but if ignite is not installed .. what we do</description>
      <pubDate>Thu, 02 Jul 2009 13:50:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/info-for-pa-risc/m-p/4451937#M358802</guid>
      <dc:creator>gany59</dc:creator>
      <dc:date>2009-07-02T13:50:03Z</dc:date>
    </item>
    <item>
      <title>Re: info for  PA-RISC</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/info-for-pa-risc/m-p/4451938#M358803</link>
      <description>Hi:&lt;BR /&gt;&lt;BR /&gt;I think your problem isn't getting configuration details, but rather that without Ignite you have no recovery capability short of a cold-install and total localization of your configuration!&lt;BR /&gt;&lt;BR /&gt;Install Ignite; take backup images with it; be protected; and enjoy the 'print_manifest' that comes with it.&lt;BR /&gt;&lt;BR /&gt;Ignite is fee and doesn't require a reboot to install:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://docs.hp.com/en/IUX/download.html" target="_blank"&gt;http://docs.hp.com/en/IUX/download.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...&lt;BR /&gt;</description>
      <pubDate>Thu, 02 Jul 2009 13:56:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/info-for-pa-risc/m-p/4451938#M358803</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2009-07-02T13:56:13Z</dc:date>
    </item>
    <item>
      <title>Re: info for  PA-RISC</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/info-for-pa-risc/m-p/4451939#M358804</link>
      <description>This question appears so frequently that I documented all the possibilities that I could think of:&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/vmunixMAJORREV=$(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</description>
      <pubDate>Thu, 02 Jul 2009 14:01:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/info-for-pa-risc/m-p/4451939#M358804</guid>
      <dc:creator>Pete Randall</dc:creator>
      <dc:date>2009-07-02T14:01:56Z</dc:date>
    </item>
    <item>
      <title>Re: info for  PA-RISC</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/info-for-pa-risc/m-p/4451940#M358805</link>
      <description>Hi JRF&lt;BR /&gt;I dont want to recover or installing the ignite. i need the my server information like serial no, no.of cores in a processor</description>
      <pubDate>Thu, 02 Jul 2009 14:17:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/info-for-pa-risc/m-p/4451940#M358805</guid>
      <dc:creator>gany59</dc:creator>
      <dc:date>2009-07-02T14:17:26Z</dc:date>
    </item>
    <item>
      <title>Re: info for  PA-RISC</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/info-for-pa-risc/m-p/4451941#M358806</link>
      <description>Shalom,&lt;BR /&gt;&lt;BR /&gt;As Ignite is freely available from &lt;A href="http://software.hp.com" target="_blank"&gt;http://software.hp.com&lt;/A&gt; there is nothing stopping you from doing the installation and getting the information.&lt;BR /&gt;&lt;BR /&gt;There are a number of free tools and scripts available with this information in the forums as well.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums11.itrc.hp.com/service/forums/questionanswer.do?threadId=178514" target="_blank"&gt;http://forums11.itrc.hp.com/service/forums/questionanswer.do?threadId=178514&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Thu, 02 Jul 2009 14:21:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/info-for-pa-risc/m-p/4451941#M358806</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2009-07-02T14:21:23Z</dc:date>
    </item>
    <item>
      <title>Re: info for  PA-RISC</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/info-for-pa-risc/m-p/4451942#M358807</link>
      <description>Apart from these things what u people said any command is there.Any way i assign the points to u ..</description>
      <pubDate>Thu, 02 Jul 2009 14:25:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/info-for-pa-risc/m-p/4451942#M358807</guid>
      <dc:creator>gany59</dc:creator>
      <dc:date>2009-07-02T14:25:24Z</dc:date>
    </item>
    <item>
      <title>Re: info for  PA-RISC</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/info-for-pa-risc/m-p/4451943#M358808</link>
      <description>Did you read my answer?  I know it mentions Ignite in the first sentence, but it then goes on to list all kinds of command line alternatives.&lt;BR /&gt;&lt;BR /&gt;Since you mention them specifically, your best bet for number of cores and serial number info,  will be cstm.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Pete</description>
      <pubDate>Thu, 02 Jul 2009 14:29:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/info-for-pa-risc/m-p/4451943#M358808</guid>
      <dc:creator>Pete Randall</dc:creator>
      <dc:date>2009-07-02T14:29:10Z</dc:date>
    </item>
    <item>
      <title>Re: info for  PA-RISC</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/info-for-pa-risc/m-p/4451944#M358809</link>
      <description>I'm not exactly sure what you want to know by "server architecture".&lt;BR /&gt;&lt;BR /&gt;However, mstm/cstm and ioscan can help you.</description>
      <pubDate>Thu, 02 Jul 2009 14:29:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/info-for-pa-risc/m-p/4451944#M358809</guid>
      <dc:creator>Torsten.</dc:creator>
      <dc:date>2009-07-02T14:29:44Z</dc:date>
    </item>
    <item>
      <title>Re: info for  PA-RISC</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/info-for-pa-risc/m-p/4451945#M358810</link>
      <description>Hi Gany59&lt;BR /&gt;&lt;BR /&gt;You can use CSTM/STM whcih will give you all info about your system&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Sanjeev</description>
      <pubDate>Thu, 02 Jul 2009 14:47:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/info-for-pa-risc/m-p/4451945#M358810</guid>
      <dc:creator>Sharma Sanjeev</dc:creator>
      <dc:date>2009-07-02T14:47:16Z</dc:date>
    </item>
    <item>
      <title>Re: info for  PA-RISC</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/info-for-pa-risc/m-p/4451946#M358811</link>
      <description>Hi:&lt;BR /&gt;&lt;BR /&gt;&amp;gt; I dont want to recover or installing the ignite.&lt;BR /&gt;&lt;BR /&gt;I understand that you have no need to recover at this time.  My point is do you care about recovering easily if you lose your boot disk(s)?  Do you believe in insurance policies?&lt;BR /&gt;&lt;BR /&gt;Install Ignite; use it to protect your server; use it if you ever need to recovery and/or clone your configuration.  In the process you get the tool you seek, anyway.&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Thu, 02 Jul 2009 15:20:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/info-for-pa-risc/m-p/4451946#M358811</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2009-07-02T15:20:36Z</dc:date>
    </item>
    <item>
      <title>Re: info for  PA-RISC</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/info-for-pa-risc/m-p/4451947#M358812</link>
      <description>print_manifest is part of the Ignite package so you have Ignite installed. But to answer your question, just run this command:&lt;BR /&gt; &lt;BR /&gt;echo "selclass qualifier all;info;wait;infolog" | /usr/sbin/cstm&lt;BR /&gt; &lt;BR /&gt;This will give you a *LOT* more than you probably wanted, but it is complete.</description>
      <pubDate>Fri, 03 Jul 2009 00:16:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/info-for-pa-risc/m-p/4451947#M358812</guid>
      <dc:creator>Bill Hassell</dc:creator>
      <dc:date>2009-07-03T00:16:22Z</dc:date>
    </item>
    <item>
      <title>Re: info for  PA-RISC</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/info-for-pa-risc/m-p/4451948#M358813</link>
      <description>Shalom,&lt;BR /&gt;&lt;BR /&gt;Ignite is a basic part of any HP-UX server.&lt;BR /&gt;&lt;BR /&gt;You have been advised to install it to use print_manifest.&lt;BR /&gt;&lt;BR /&gt;There is no need to back up or recover your server to use this tool.&lt;BR /&gt;&lt;BR /&gt;However it should be pointed out: If this server has any purpose at all and does any meaningful work, you are not doing your job as a sysadmin by not using Ignite to back it up.&lt;BR /&gt;&lt;BR /&gt;I can say though I'm currently now working, in the past, Ignite saved several servers of mine and my job on more than one occasion.&lt;BR /&gt;&lt;BR /&gt;You SHOULD be using Ignite.&lt;BR /&gt;&lt;BR /&gt;End lecture.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Fri, 03 Jul 2009 00:34:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/info-for-pa-risc/m-p/4451948#M358813</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2009-07-03T00:34:55Z</dc:date>
    </item>
    <item>
      <title>Re: info for  PA-RISC</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/info-for-pa-risc/m-p/4451949#M358814</link>
      <description>Hi gany59&lt;BR /&gt;&lt;BR /&gt;=&amp;gt; i need the my server information like serial no, no.of cores in a processor==&amp;gt;&lt;BR /&gt;&lt;BR /&gt;==&amp;gt; U can check all the information of he server by running the nickel script. Please find the script with the procedure.&lt;BR /&gt;&lt;BR /&gt;Rgds-Kranti</description>
      <pubDate>Sun, 05 Jul 2009 08:52:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/info-for-pa-risc/m-p/4451949#M358814</guid>
      <dc:creator>Kranti Mahmud</dc:creator>
      <dc:date>2009-07-05T08:52:04Z</dc:date>
    </item>
    <item>
      <title>Re: info for  PA-RISC</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/info-for-pa-risc/m-p/4451950#M358815</link>
      <description>Hi gany59,&lt;BR /&gt;&lt;BR /&gt;From nickel.tar.gz check the cstm.html file for the server information like serial no, no.of cores in a processor.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Rgds-Kranti</description>
      <pubDate>Sun, 05 Jul 2009 08:53:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/info-for-pa-risc/m-p/4451950#M358815</guid>
      <dc:creator>Kranti Mahmud</dc:creator>
      <dc:date>2009-07-05T08:53:46Z</dc:date>
    </item>
  </channel>
</rss>

