<?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/2996167#M125461</link>
    <description>There are numerous ways to do this.  My 2 favorites are:&lt;BR /&gt;&lt;BR /&gt;1)  Ignite/UX print_manifest - /opt/ignite/bin/print_manifest - Do a 'man print_manifest' for more information.  If you don't have Ignite/UX installed, you can get it here: &lt;A href="http://software.hp.com/products/IUX/" target="_blank"&gt;http://software.hp.com/products/IUX/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;2) CFG2HTML - does you whole system configuration and generates an HTML file with all the details.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://come.to/cfg2html" target="_blank"&gt;http://come.to/cfg2html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;It works on HP-UX 10.20, 11.0 and 11i.</description>
    <pubDate>Thu, 12 Jun 2003 18:08:48 GMT</pubDate>
    <dc:creator>Patrick Wallek</dc:creator>
    <dc:date>2003-06-12T18:08:48Z</dc:date>
    <item>
      <title>system information</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/system-information/m-p/2996165#M125459</link>
      <description>Hi ,&lt;BR /&gt;I want to get the following information about my servers HPUX servers (11.00 &amp;amp; 10.20)&lt;BR /&gt;CPU&lt;BR /&gt;Memory &lt;BR /&gt;Disk space&lt;BR /&gt;Serial &lt;BR /&gt;OS Kernel width&lt;BR /&gt;All of the above without using SAM just command that I can put into a script &lt;BR /&gt;Any idea?&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;A.K.&lt;BR /&gt;</description>
      <pubDate>Thu, 12 Jun 2003 18:02:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/system-information/m-p/2996165#M125459</guid>
      <dc:creator>A.K.</dc:creator>
      <dc:date>2003-06-12T18:02:01Z</dc:date>
    </item>
    <item>
      <title>Re: system information</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/system-information/m-p/2996166#M125460</link>
      <description>A.K.,&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;I use this:&lt;BR /&gt;&lt;BR /&gt;echo `hostname` "is a " `model |sed 's/9000\/800\///' |sed 's/9000\/899\///'` "with" `ioscan -k |grep -n p&lt;BR /&gt;rocessor |wc -l` `cpuspeed` "Mhz processors and" `memory` "KB of memory"&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Here's the cpuspeed script:&lt;BR /&gt;&lt;BR /&gt;HPUX=/stand/vmunix&lt;BR /&gt;&lt;BR /&gt;MHZ=$(echo itick_per_tick/D         | adb -k $HPUX /dev/kmem         | tail -1         | awk '{print $2/10000}')&lt;BR /&gt;echo $MHZ&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Here's the memory script:&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"         | adb $HPUX /dev/kmem         | grep "${MYSYMBOL}: *."         | awk '{printf "%.0f MB\n",$2/256}')&lt;BR /&gt;echo $MYMEM&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Diskspace, Serial and kernel width are available else where, you can search for them or someone will be along shortly.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Pete</description>
      <pubDate>Thu, 12 Jun 2003 18:07:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/system-information/m-p/2996166#M125460</guid>
      <dc:creator>Pete Randall</dc:creator>
      <dc:date>2003-06-12T18:07:28Z</dc:date>
    </item>
    <item>
      <title>Re: system information</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/system-information/m-p/2996167#M125461</link>
      <description>There are numerous ways to do this.  My 2 favorites are:&lt;BR /&gt;&lt;BR /&gt;1)  Ignite/UX print_manifest - /opt/ignite/bin/print_manifest - Do a 'man print_manifest' for more information.  If you don't have Ignite/UX installed, you can get it here: &lt;A href="http://software.hp.com/products/IUX/" target="_blank"&gt;http://software.hp.com/products/IUX/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;2) CFG2HTML - does you whole system configuration and generates an HTML file with all the details.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://come.to/cfg2html" target="_blank"&gt;http://come.to/cfg2html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;It works on HP-UX 10.20, 11.0 and 11i.</description>
      <pubDate>Thu, 12 Jun 2003 18:08:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/system-information/m-p/2996167#M125461</guid>
      <dc:creator>Patrick Wallek</dc:creator>
      <dc:date>2003-06-12T18:08:48Z</dc:date>
    </item>
    <item>
      <title>Re: system information</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/system-information/m-p/2996168#M125462</link>
      <description>Hi:&lt;BR /&gt;&lt;BR /&gt;For CPU information try these:&lt;BR /&gt;&lt;BR /&gt;echo "selclass qualifier cpu;info;wait;infolog"|cstm&lt;BR /&gt;&lt;BR /&gt;ioscan -fC processor &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;Dario</description>
      <pubDate>Thu, 12 Jun 2003 18:14:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/system-information/m-p/2996168#M125462</guid>
      <dc:creator>Dario_1</dc:creator>
      <dc:date>2003-06-12T18:14:28Z</dc:date>
    </item>
    <item>
      <title>Re: system information</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/system-information/m-p/2996169#M125463</link>
      <description>Disk:&lt;BR /&gt;&lt;BR /&gt;#!/bin/sh&lt;BR /&gt;# This script will return the total disk space in system.&lt;BR /&gt;# Geoff Wild&lt;BR /&gt;#&lt;BR /&gt;system=`uname -n`&lt;BR /&gt;#ttldisk=`df -t -l | awk 'BEGIN {tot=0} $2 == "total" {tot=tot+$1} END {print (tot*512)/1000000000}'`&lt;BR /&gt;ttldisk=`df -t -l | awk 'BEGIN {tot=0} $2 == "total" {tot=tot+$1} END {print (tot*512)/1024/1024/1024}'`&lt;BR /&gt;#ttlfree=`df -l | awk -F: '{print $2}' | awk 'BEGIN {tot=0} {tot=tot+$1} END {print (tot*512)/1000000000}'`&lt;BR /&gt;#ttlfree=`df -t -l | awk -F: '{print $2}' | awk 'BEGIN {tot=0} {tot=tot+$1}  END {print (tot*512)/1000000000}'`&lt;BR /&gt;ttlused=`df -t -l | awk 'BEGIN {tot=0} $2 == "used" {tot=tot+$1} END {print (tot*512)/1024/1024/1024}'`&lt;BR /&gt;ttlfree=`echo $ttldisk $ttlused | awk '{$3 = $1 - $2 ; print $3}'`&lt;BR /&gt;echo "Total disk space on $system is: $ttldisk GB" | tee /usr/tmp/$system.diskspace&lt;BR /&gt;echo "Total used space on $system is: $ttlused GB" | tee -a /usr/tmp/$system.diskspace&lt;BR /&gt;echo "Total free space on $system is: $ttlfree GB" | tee -a /usr/tmp/$system.diskspace&lt;BR /&gt;echo " " | tee -a /usr/tmp/$system.diskspace&lt;BR /&gt;echo "Note: this is only for currently mounted file systems..." | tee -a /usr/tmp/$system.diskspace&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Rgds...Geoff&lt;BR /&gt;</description>
      <pubDate>Thu, 12 Jun 2003 19:02:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/system-information/m-p/2996169#M125463</guid>
      <dc:creator>Geoff Wild</dc:creator>
      <dc:date>2003-06-12T19:02:13Z</dc:date>
    </item>
    <item>
      <title>Re: system information</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/system-information/m-p/2996170#M125464</link>
      <description>I would say the best command is:&lt;BR /&gt;&lt;BR /&gt;# /opt/ignite/bin/print_manifest&lt;BR /&gt;&lt;BR /&gt;This command will give you all information you need in a nice order. BUT you need to have Ignite-UX installed on the server to run this command.&lt;BR /&gt;&lt;BR /&gt;Me next bet would be STM:&lt;BR /&gt;&lt;BR /&gt;# stm&lt;BR /&gt;# cstm&lt;BR /&gt;# mstm&lt;BR /&gt;&lt;BR /&gt;You will get more information from there specific to each hardware.</description>
      <pubDate>Thu, 12 Jun 2003 19:04:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/system-information/m-p/2996170#M125464</guid>
      <dc:creator>Helen French</dc:creator>
      <dc:date>2003-06-12T19:04:38Z</dc:date>
    </item>
    <item>
      <title>Re: system information</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/system-information/m-p/2996171#M125465</link>
      <description>A.K.&lt;BR /&gt;&lt;BR /&gt;/opt/ignite/bin/print_manifest will get you what you need.&lt;BR /&gt;&lt;BR /&gt;Hai</description>
      <pubDate>Thu, 12 Jun 2003 19:10:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/system-information/m-p/2996171#M125465</guid>
      <dc:creator>Hai Nguyen_1</dc:creator>
      <dc:date>2003-06-12T19:10:27Z</dc:date>
    </item>
    <item>
      <title>Re: system information</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/system-information/m-p/2996172#M125466</link>
      <description>Also, you can copy print_manifest from an ignite-installed server to your other hosts.  It runs fine without installing the complete ignite package on every host.</description>
      <pubDate>Thu, 12 Jun 2003 19:19:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/system-information/m-p/2996172#M125466</guid>
      <dc:creator>Bill Douglass</dc:creator>
      <dc:date>2003-06-12T19:19:29Z</dc:date>
    </item>
    <item>
      <title>Re: system information</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/system-information/m-p/2996173#M125467</link>
      <description>Folks, I don???t have Ignite installed</description>
      <pubDate>Thu, 12 Jun 2003 19:46:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/system-information/m-p/2996173#M125467</guid>
      <dc:creator>A.K.</dc:creator>
      <dc:date>2003-06-12T19:46:01Z</dc:date>
    </item>
    <item>
      <title>Re: system information</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/system-information/m-p/2996174#M125468</link>
      <description>RUN! Do not walk to the website:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.software.hp.com/products/IUX/" target="_blank"&gt;http://www.software.hp.com/products/IUX/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Download the Ignite/UX depot and install it on *every* machine, then run the print_manifest command (and I would save it in a file or print it). Then the very next step is to run make_tape_recovery (check the man pages for options) to save your vg00 disk(s) onto a bootable backup tape. For systems without a tape drive, setup an Ignite network server and use make_net_recovery. Without an Ignite/UX bootable backup image, you are looking at very long recovery times (perhaps days) in case you lose your boot disk(s).</description>
      <pubDate>Thu, 12 Jun 2003 20:55:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/system-information/m-p/2996174#M125468</guid>
      <dc:creator>Bill Hassell</dc:creator>
      <dc:date>2003-06-12T20:55:50Z</dc:date>
    </item>
    <item>
      <title>Re: system information</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/system-information/m-p/2996175#M125469</link>
      <description>I like using nickel to collect system information periodically.</description>
      <pubDate>Thu, 12 Jun 2003 22:01:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/system-information/m-p/2996175#M125469</guid>
      <dc:creator>twang</dc:creator>
      <dc:date>2003-06-12T22:01:30Z</dc:date>
    </item>
    <item>
      <title>Re: system information</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/system-information/m-p/2996176#M125470</link>
      <description>I have attached a copy of a script I run every week to gather server configuration info.  You can comment out certain functions if you don't require that info.&lt;BR /&gt;&lt;BR /&gt;Cheers&lt;BR /&gt;Con</description>
      <pubDate>Thu, 12 Jun 2003 22:29:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/system-information/m-p/2996176#M125470</guid>
      <dc:creator>Con O'Kelly</dc:creator>
      <dc:date>2003-06-12T22:29:30Z</dc:date>
    </item>
    <item>
      <title>Re: system information</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/system-information/m-p/2996177#M125471</link>
      <description>i am agree with twang, nickel is the best tools, it also generate html file 4 u, if u want to view the file in Windows based system, as my experiense my boss always ask my about my server info, so i just used nickel to generate the file, and that i can ask my web-master to post it the my intranet, rather then asking by BOSS every once. &lt;BR /&gt;&lt;BR /&gt;from,&lt;BR /&gt;jason</description>
      <pubDate>Fri, 13 Jun 2003 00:42:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/system-information/m-p/2996177#M125471</guid>
      <dc:creator>Jason_216</dc:creator>
      <dc:date>2003-06-13T00:42:46Z</dc:date>
    </item>
  </channel>
</rss>

