<?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: System Information in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/system-information/m-p/3796647#M265865</link>
    <description>hi,&lt;BR /&gt;&lt;BR /&gt;What about glancePlus or xstm tools. These tools should provide the information your looking for.&lt;BR /&gt;&lt;BR /&gt;my&lt;BR /&gt;$0.02&lt;BR /&gt;&lt;BR /&gt;Sp4admin</description>
    <pubDate>Wed, 31 May 2006 18:07:47 GMT</pubDate>
    <dc:creator>Sp4admin</dc:creator>
    <dc:date>2006-05-31T18:07:47Z</dc:date>
    <item>
      <title>System Information</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/system-information/m-p/3796640#M265858</link>
      <description>Hello all,&lt;BR /&gt;could give me some help  on how i could find some informations on CPU, RAM memory and physical disks (the commands please)&lt;BR /&gt;Thank you</description>
      <pubDate>Tue, 30 May 2006 07:02:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/system-information/m-p/3796640#M265858</guid>
      <dc:creator>Andrikopoulos</dc:creator>
      <dc:date>2006-05-30T07:02:23Z</dc:date>
    </item>
    <item>
      <title>Re: System Information</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/system-information/m-p/3796641#M265859</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;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</description>
      <pubDate>Tue, 30 May 2006 07:07:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/system-information/m-p/3796641#M265859</guid>
      <dc:creator>Pete Randall</dc:creator>
      <dc:date>2006-05-30T07:07:24Z</dc:date>
    </item>
    <item>
      <title>Re: System Information</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/system-information/m-p/3796642#M265860</link>
      <description>Hi,&lt;BR /&gt;the easiest to use is SAM.&lt;BR /&gt;If you after command lines only, do a search on "system info" which will give for example:&lt;BR /&gt;&lt;BR /&gt;perl -e 'local($PSTAT, $PSTAT_PROCESSOR)=(239,10);&lt;BR /&gt;local($struct_pst_processor)=("L30");&lt;BR /&gt;local($cpu_info, $cpu_ticks);&lt;BR /&gt;$cpu_info = "\0" x 120;&lt;BR /&gt;syscall($PSTAT, $PSTAT_PROCESSOR, $cpu_info, length($cpu_info), 1, 0);&lt;BR /&gt;($cpu_ticks)=(unpack($struct_pst_processor, $cpu_info))[26];&lt;BR /&gt;print "speed=".int($cpu_ticks/10000)."\n";'&lt;BR /&gt;&lt;BR /&gt;echo runningprocs/D | adb -k /stand/vmunix /dev/mem &lt;BR /&gt;&lt;BR /&gt;dmesg | grep Physical&lt;BR /&gt;</description>
      <pubDate>Tue, 30 May 2006 07:08:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/system-information/m-p/3796642#M265860</guid>
      <dc:creator>Peter Godron</dc:creator>
      <dc:date>2006-05-30T07:08:59Z</dc:date>
    </item>
    <item>
      <title>Re: System Information</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/system-information/m-p/3796643#M265861</link>
      <description>Simplest is SAM.&lt;BR /&gt;If you want thru command line&lt;BR /&gt;Then&lt;BR /&gt;For CPU - no of CPUs&lt;BR /&gt;echo "selclass qualifier cpu;info;wait;infolog" | /usr/sbin/cstm&lt;BR /&gt;Memory -&lt;BR /&gt;echo "selclass qualifier memory;info;wait;infolog" | /usr/sbin/cstm&lt;BR /&gt;Server model - &lt;BR /&gt;model - will tell you your server model&lt;BR /&gt;Disks -&lt;BR /&gt;ioscan -fnC disk&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Ninad</description>
      <pubDate>Tue, 30 May 2006 07:09:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/system-information/m-p/3796643#M265861</guid>
      <dc:creator>Ninad_1</dc:creator>
      <dc:date>2006-05-30T07:09:06Z</dc:date>
    </item>
    <item>
      <title>Re: System Information</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/system-information/m-p/3796644#M265862</link>
      <description>You can use the following command:&lt;BR /&gt;&lt;BR /&gt;# echo "map selall info;wait infolog" | cstm &amp;gt; /tmp/cstm.txt&lt;BR /&gt;&lt;BR /&gt;then by viewing cstm.txt, u will get all the info abt the system h/w.</description>
      <pubDate>Tue, 30 May 2006 07:10:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/system-information/m-p/3796644#M265862</guid>
      <dc:creator>Mridul Shrivastava</dc:creator>
      <dc:date>2006-05-30T07:10:19Z</dc:date>
    </item>
    <item>
      <title>Re: System Information</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/system-information/m-p/3796645#M265863</link>
      <description>For more documentation, you can dl and install cfg2html:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://groups.yahoo.com/group/cfg2html/" target="_blank"&gt;http://groups.yahoo.com/group/cfg2html/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;That will give you a nice html page of just about everything you wanted to know about your server but were afraid to ask  :)&lt;BR /&gt;&lt;BR /&gt;Rgds...Geoff</description>
      <pubDate>Tue, 30 May 2006 13:05:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/system-information/m-p/3796645#M265863</guid>
      <dc:creator>Geoff Wild</dc:creator>
      <dc:date>2006-05-30T13:05:21Z</dc:date>
    </item>
    <item>
      <title>Re: System Information</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/system-information/m-p/3796646#M265864</link>
      <description>Argh - ignore my last thread - just noticed that Pete already mentioned it...&lt;BR /&gt;&lt;BR /&gt;I attached the sysinfo from hp.&lt;BR /&gt;&lt;BR /&gt;Run from cron like so:&lt;BR /&gt;&lt;BR /&gt;# Run the sysinfo script&lt;BR /&gt;0 6 1 * * /usr/bin/SysInfo -a -b -o /usr/tmp/`hostname`.sysinfo ; /usr/bin/chmod 644 /usr/tmp/`hostname`.sysinfo &amp;gt;/tmp/sysinfo.cron 2&amp;gt;&amp;amp;1&lt;BR /&gt;&lt;BR /&gt;Rgds...Geoff</description>
      <pubDate>Tue, 30 May 2006 14:26:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/system-information/m-p/3796646#M265864</guid>
      <dc:creator>Geoff Wild</dc:creator>
      <dc:date>2006-05-30T14:26:42Z</dc:date>
    </item>
    <item>
      <title>Re: System Information</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/system-information/m-p/3796647#M265865</link>
      <description>hi,&lt;BR /&gt;&lt;BR /&gt;What about glancePlus or xstm tools. These tools should provide the information your looking for.&lt;BR /&gt;&lt;BR /&gt;my&lt;BR /&gt;$0.02&lt;BR /&gt;&lt;BR /&gt;Sp4admin</description>
      <pubDate>Wed, 31 May 2006 18:07:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/system-information/m-p/3796647#M265865</guid>
      <dc:creator>Sp4admin</dc:creator>
      <dc:date>2006-05-31T18:07:47Z</dc:date>
    </item>
  </channel>
</rss>

