<?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: Any Scripts for documenting a System? in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/any-scripts-for-documenting-a-system/m-p/2440436#M7166</link>
    <description>Shaun:&lt;BR /&gt;&lt;BR /&gt;See if these two threads help you:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0xf299c3d7fb78d4118fef0090279cd0f9,00.html" target="_blank"&gt;http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0xf299c3d7fb78d4118fef0090279cd0f9,00.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0xf74a49c5ae73d4118fef0090279cd0f9,00.html" target="_blank"&gt;http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0xf74a49c5ae73d4118fef0090279cd0f9,00.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
    <pubDate>Mon, 28 Aug 2000 13:18:17 GMT</pubDate>
    <dc:creator>James R. Ferguson</dc:creator>
    <dc:date>2000-08-28T13:18:17Z</dc:date>
    <item>
      <title>Any Scripts for documenting a System?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/any-scripts-for-documenting-a-system/m-p/2440431#M7161</link>
      <description>Hello Everyone,&lt;BR /&gt;&lt;BR /&gt;Just wanted to find out if there are any scripts that anyone has done which will run and document a system.&lt;BR /&gt;&lt;BR /&gt;I am looking for a script which will give all important information about a system such as Hostname, IP, Diskinfo, Memory information ( as well as existing Memory ), CPU information, and any other type of information that would be important to a System Administrator.&lt;BR /&gt;&lt;BR /&gt;I appreciate any responses. Thanks for your help..&lt;BR /&gt;&lt;BR /&gt;Shaun Aldrich&lt;BR /&gt;SAldrich@chaptersinc.com</description>
      <pubDate>Mon, 28 Aug 2000 13:08:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/any-scripts-for-documenting-a-system/m-p/2440431#M7161</guid>
      <dc:creator>Shaun Aldrich</dc:creator>
      <dc:date>2000-08-28T13:08:15Z</dc:date>
    </item>
    <item>
      <title>Re: Any Scripts for documenting a System?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/any-scripts-for-documenting-a-system/m-p/2440432#M7162</link>
      <description>See print_manifest from Ignite. &lt;BR /&gt;Also, do a search in forum, on Friday, I guess it was a toic about.</description>
      <pubDate>Mon, 28 Aug 2000 13:10:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/any-scripts-for-documenting-a-system/m-p/2440432#M7162</guid>
      <dc:creator>Antoanetta Naghiu</dc:creator>
      <dc:date>2000-08-28T13:10:58Z</dc:date>
    </item>
    <item>
      <title>Re: Any Scripts for documenting a System?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/any-scripts-for-documenting-a-system/m-p/2440433#M7163</link>
      <description>Yeah, print_manifest is a nice utility to get all your hardware/software/IP/LAN information. &lt;BR /&gt;The question has been how to get the serial number of the box...and as far as I can tell...it's still a manual function.&lt;BR /&gt;&lt;BR /&gt;Regards,</description>
      <pubDate>Mon, 28 Aug 2000 13:15:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/any-scripts-for-documenting-a-system/m-p/2440433#M7163</guid>
      <dc:creator>Rita C Workman</dc:creator>
      <dc:date>2000-08-28T13:15:24Z</dc:date>
    </item>
    <item>
      <title>Re: Any Scripts for documenting a System?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/any-scripts-for-documenting-a-system/m-p/2440434#M7164</link>
      <description>Here's one I wrote recently.  Covers most of what you were looking for.  Also it has logic in it to archive old system data (I run this out of cron monthly).  That way you don't have to remember to run it again after a system change.&lt;BR /&gt;&lt;BR /&gt;svpath=/home/sysdocs    # path to save files in&lt;BR /&gt;name=`hostname`&lt;BR /&gt;date=`date +%m%d%y`&lt;BR /&gt;&lt;BR /&gt;if /bin/test  -d $svpath&lt;BR /&gt;        then&lt;BR /&gt;                if /bin/test -f $svpath/$name.*&lt;BR /&gt;                then&lt;BR /&gt;                        if /bin/test -f $svpath/*.old&lt;BR /&gt;                        then&lt;BR /&gt;                        rm $svpath/*.old&lt;BR /&gt;                        fi&lt;BR /&gt;                        if /bin/test -f $svpath/*.tar&lt;BR /&gt;                        then&lt;BR /&gt;                        cp $svpath/*.tar $svpath/olderconfig.old&lt;BR /&gt;                        fi&lt;BR /&gt;                        tar cvf $svpath/$date.$name.sysinfo.tar $svpath/$name.*&lt;BR /&gt;                fi&lt;BR /&gt;        else&lt;BR /&gt;                mkdir $svpath&lt;BR /&gt;                chmod 755 $svpath&lt;BR /&gt;&lt;BR /&gt;fi&lt;BR /&gt;cd $svpath&lt;BR /&gt;&lt;BR /&gt;ioscan -fun &amp;gt; $name.ioscan.$date&lt;BR /&gt;uname -a &amp;gt; $name.uname.$date&lt;BR /&gt;swlist &amp;gt; $name.swlist.$date&lt;BR /&gt;cat /etc/hosts &amp;gt; $name.hosts.$date&lt;BR /&gt;cat /etc/resolv.conf &amp;gt; $name.resolv.$date&lt;BR /&gt;cat /etc/rc.config.d/netconf &amp;gt; $name.netconf.$date&lt;BR /&gt;cat /etc/passwd &amp;gt; $name.users.$date&lt;BR /&gt;cat /etc/fstab &amp;gt; $name.fstab.$date&lt;BR /&gt;&lt;BR /&gt;Hope this helps,&lt;BR /&gt;Steve</description>
      <pubDate>Mon, 28 Aug 2000 13:16:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/any-scripts-for-documenting-a-system/m-p/2440434#M7164</guid>
      <dc:creator>Steve Sauve</dc:creator>
      <dc:date>2000-08-28T13:16:43Z</dc:date>
    </item>
    <item>
      <title>Re: Any Scripts for documenting a System?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/any-scripts-for-documenting-a-system/m-p/2440435#M7165</link>
      <description>Hello,&lt;BR /&gt;&lt;BR /&gt;What exactly do you mean by print_manifest from Ignite? How can I find this? Does this require Ignite to be installed?&lt;BR /&gt;&lt;BR /&gt;Thanks for your help.&lt;BR /&gt;&lt;BR /&gt;S Aldrich</description>
      <pubDate>Mon, 28 Aug 2000 13:16:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/any-scripts-for-documenting-a-system/m-p/2440435#M7165</guid>
      <dc:creator>Shaun Aldrich</dc:creator>
      <dc:date>2000-08-28T13:16:59Z</dc:date>
    </item>
    <item>
      <title>Re: Any Scripts for documenting a System?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/any-scripts-for-documenting-a-system/m-p/2440436#M7166</link>
      <description>Shaun:&lt;BR /&gt;&lt;BR /&gt;See if these two threads help you:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0xf299c3d7fb78d4118fef0090279cd0f9,00.html" target="_blank"&gt;http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0xf299c3d7fb78d4118fef0090279cd0f9,00.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0xf74a49c5ae73d4118fef0090279cd0f9,00.html" target="_blank"&gt;http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0xf74a49c5ae73d4118fef0090279cd0f9,00.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Mon, 28 Aug 2000 13:18:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/any-scripts-for-documenting-a-system/m-p/2440436#M7166</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2000-08-28T13:18:17Z</dc:date>
    </item>
    <item>
      <title>Re: Any Scripts for documenting a System?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/any-scripts-for-documenting-a-system/m-p/2440437#M7167</link>
      <description>Yes it does. Ignite is software on your application CD. You can install it easily and NO it does not require a reboot. So you can load it anytime.  It is very useful utility.  With it you have the ability to create 'make_recovery' tapes.  Which is the bottom line of protection for your system should anything go wrong.  You can reboot your system from this tape, should your drives ever be unbootable.&lt;BR /&gt;So if you don't have Ignite-UX loaded on your box...do it asap. Then run (with the options of your choice) make_recovery to a tape.. and you will also have some other tools like 'print_manifest' that's been mentioned to get a full consensus of what's on your system in one file (except the serial number of course...)&lt;BR /&gt;Regards,&lt;BR /&gt;....and don't forget to assign points...Tx</description>
      <pubDate>Mon, 28 Aug 2000 13:21:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/any-scripts-for-documenting-a-system/m-p/2440437#M7167</guid>
      <dc:creator>Rita C Workman</dc:creator>
      <dc:date>2000-08-28T13:21:10Z</dc:date>
    </item>
    <item>
      <title>Re: Any Scripts for documenting a System?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/any-scripts-for-documenting-a-system/m-p/2440438#M7168</link>
      <description>Thanks for your replies everyone...&lt;BR /&gt;&lt;BR /&gt;Shaun Aldrich</description>
      <pubDate>Mon, 28 Aug 2000 14:16:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/any-scripts-for-documenting-a-system/m-p/2440438#M7168</guid>
      <dc:creator>Shaun Aldrich</dc:creator>
      <dc:date>2000-08-28T14:16:05Z</dc:date>
    </item>
    <item>
      <title>Re: Any Scripts for documenting a System?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/any-scripts-for-documenting-a-system/m-p/2440439#M7169</link>
      <description>Shaun,&lt;BR /&gt;&lt;BR /&gt;you may want to try cfg2html and MakeIndex.&lt;BR /&gt;-home &lt;BR /&gt;&lt;A href="http://members.tripod.de/rose_swe/cfg/cfg.html" target="_blank"&gt;http://members.tripod.de/rose_swe/cfg/cfg.html&lt;/A&gt;&lt;BR /&gt;-download &lt;BR /&gt;&lt;A href="http://members.tripod.de/rose_swe/cfg/cfg2html.sh" target="_blank"&gt;http://members.tripod.de/rose_swe/cfg/cfg2html.sh&lt;/A&gt;&lt;BR /&gt;&lt;A href="http://members.tripod.de/rose_swe/cfg/makeindex.shar" target="_blank"&gt;http://members.tripod.de/rose_swe/cfg/makeindex.shar&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;RGDS, &lt;BR /&gt;Thomas</description>
      <pubDate>Wed, 30 Aug 2000 05:52:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/any-scripts-for-documenting-a-system/m-p/2440439#M7169</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2000-08-30T05:52:50Z</dc:date>
    </item>
    <item>
      <title>Re: Any Scripts for documenting a System?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/any-scripts-for-documenting-a-system/m-p/2440440#M7170</link>
      <description>Hi Shaun,&lt;BR /&gt;You should also look at Thomas's links, I use also cfg2html for some machines (for now), it generates in html format, so I use it to put on a web server I access from anywhere in the intranet...The author is a german HP guy &lt;BR /&gt;Very good I tell you</description>
      <pubDate>Wed, 30 Aug 2000 06:56:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/any-scripts-for-documenting-a-system/m-p/2440440#M7170</guid>
      <dc:creator>Victor BERRIDGE</dc:creator>
      <dc:date>2000-08-30T06:56:48Z</dc:date>
    </item>
    <item>
      <title>Re: Any Scripts for documenting a System?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/any-scripts-for-documenting-a-system/m-p/2440441#M7171</link>
      <description>I use a nice little script called SysInfo which can output your configuration in an HTML document. It's only about 300K. Mail me if you would like a copy.</description>
      <pubDate>Wed, 30 Aug 2000 08:58:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/any-scripts-for-documenting-a-system/m-p/2440441#M7171</guid>
      <dc:creator>PAUL  BAKER</dc:creator>
      <dc:date>2000-08-30T08:58:09Z</dc:date>
    </item>
    <item>
      <title>Re: Any Scripts for documenting a System?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/any-scripts-for-documenting-a-system/m-p/2440442#M7172</link>
      <description>Shaun,&lt;BR /&gt;&lt;BR /&gt;Why not take the time and write them yourself?&lt;BR /&gt;&lt;BR /&gt;Here are a few commands that may be of help, just redirect their output to a file for the first command, then append the rest to the same file.&lt;BR /&gt;&lt;BR /&gt;bdf - snapshot of disk usage and mount points&lt;BR /&gt;vmstat - status of virtual memory&lt;BR /&gt;ioscan - scan of the I/O bus.&lt;BR /&gt;lanscan - scans the network cards as well as their configurations&lt;BR /&gt;ifconfig - more infor about the lancards.&lt;BR /&gt;ls -lai * - run from the root directory gives the file structure.&lt;BR /&gt;&lt;BR /&gt;You may want to get a shell programming/scripting book.&lt;BR /&gt;&lt;BR /&gt;HP has a shell book in their instant information CD-ROM, but Hayden puts a good shell book out as well:  "UNIX Shell Programming"  ISBN: 0-672-48448-X&lt;BR /&gt;&lt;BR /&gt;If you need any help with your script, e-mail me.  clamick@hotmail.&lt;BR /&gt;&lt;BR /&gt;I'll help, but I won't write the script for you.  You NEED to have this skill set in your pocket.&lt;BR /&gt;&lt;BR /&gt;Chris</description>
      <pubDate>Wed, 30 Aug 2000 10:28:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/any-scripts-for-documenting-a-system/m-p/2440442#M7172</guid>
      <dc:creator>Chris Amick_1</dc:creator>
      <dc:date>2000-08-30T10:28:35Z</dc:date>
    </item>
    <item>
      <title>Re: Any Scripts for documenting a System?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/any-scripts-for-documenting-a-system/m-p/2440443#M7173</link>
      <description>When I run print_manifest on my HP-UX 11.0 system, the Serial Number prints under the Customer Information.  I was not involved with the installation (third party consultant did it), so, is this something that the consultant put in when the box was set up or maybe when Ignite was installed?  If not, any ideas as to why I get the serial number from my print_manifest?</description>
      <pubDate>Wed, 30 Aug 2000 12:28:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/any-scripts-for-documenting-a-system/m-p/2440443#M7173</guid>
      <dc:creator>Vince Arends</dc:creator>
      <dc:date>2000-08-30T12:28:05Z</dc:date>
    </item>
    <item>
      <title>Re: Any Scripts for documenting a System?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/any-scripts-for-documenting-a-system/m-p/2440444#M7174</link>
      <description>Hi Paul,&lt;BR /&gt;&lt;BR /&gt;I am very interested in the script called SysInfo that you replied to me about. I don't have your email address but you can email me at the below address. Thanks.&lt;BR /&gt;&lt;BR /&gt;Shaun Aldrich&lt;BR /&gt;SAldrich@chaptersinc.com</description>
      <pubDate>Wed, 30 Aug 2000 13:43:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/any-scripts-for-documenting-a-system/m-p/2440444#M7174</guid>
      <dc:creator>Shaun Aldrich</dc:creator>
      <dc:date>2000-08-30T13:43:42Z</dc:date>
    </item>
    <item>
      <title>Re: Any Scripts for documenting a System?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/any-scripts-for-documenting-a-system/m-p/2440445#M7175</link>
      <description>I would be interested in seeing the script also.  I can be reached at:&lt;BR /&gt;&lt;BR /&gt;riggsa@sensormatic.com</description>
      <pubDate>Wed, 30 Aug 2000 14:28:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/any-scripts-for-documenting-a-system/m-p/2440445#M7175</guid>
      <dc:creator>Alan Riggs</dc:creator>
      <dc:date>2000-08-30T14:28:06Z</dc:date>
    </item>
    <item>
      <title>Re: Any Scripts for documenting a System?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/any-scripts-for-documenting-a-system/m-p/2440446#M7176</link>
      <description>And me!!! victor.berridge@etat.ge.ch (...)&lt;BR /&gt;&lt;BR /&gt;Thanks</description>
      <pubDate>Wed, 30 Aug 2000 14:38:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/any-scripts-for-documenting-a-system/m-p/2440446#M7176</guid>
      <dc:creator>Victor BERRIDGE</dc:creator>
      <dc:date>2000-08-30T14:38:14Z</dc:date>
    </item>
    <item>
      <title>Re: Any Scripts for documenting a System?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/any-scripts-for-documenting-a-system/m-p/2440447#M7177</link>
      <description>Here is version 1.75 of Scott Truesdale's sysinfo script.</description>
      <pubDate>Wed, 30 Aug 2000 14:40:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/any-scripts-for-documenting-a-system/m-p/2440447#M7177</guid>
      <dc:creator>Robert Gamble</dc:creator>
      <dc:date>2000-08-30T14:40:03Z</dc:date>
    </item>
    <item>
      <title>Re: Any Scripts for documenting a System?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/any-scripts-for-documenting-a-system/m-p/2440448#M7178</link>
      <description>I'd like to see that script SysInfo too.....could you send it to me or tell me where to get it.&lt;BR /&gt;My email is:&lt;BR /&gt;rworkman@wvbep.org&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;</description>
      <pubDate>Wed, 30 Aug 2000 14:45:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/any-scripts-for-documenting-a-system/m-p/2440448#M7178</guid>
      <dc:creator>Rita C Workman</dc:creator>
      <dc:date>2000-08-30T14:45:11Z</dc:date>
    </item>
    <item>
      <title>Re: Any Scripts for documenting a System?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/any-scripts-for-documenting-a-system/m-p/2440449#M7179</link>
      <description>I would also like to see the Sysinfo script if someone would forward it. Anyone know if there is a script called LVMcollect.11 or capture.11? I can be reached at &lt;BR /&gt;lanny.kimsey@marconi.com&lt;BR /&gt;Thanks!</description>
      <pubDate>Wed, 30 Aug 2000 17:07:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/any-scripts-for-documenting-a-system/m-p/2440449#M7179</guid>
      <dc:creator>Jennifer Chiarelli</dc:creator>
      <dc:date>2000-08-30T17:07:13Z</dc:date>
    </item>
    <item>
      <title>Re: Any Scripts for documenting a System?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/any-scripts-for-documenting-a-system/m-p/2440450#M7180</link>
      <description>I am intereseted in the SysInfo script mentioned by Paul anybody that has a copy could you please mail it to Fred.myers@attws.com.&lt;BR /&gt;&lt;BR /&gt;Thanks.</description>
      <pubDate>Mon, 29 Jan 2001 17:59:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/any-scripts-for-documenting-a-system/m-p/2440450#M7180</guid>
      <dc:creator>Fred Myers</dc:creator>
      <dc:date>2001-01-29T17:59:10Z</dc:date>
    </item>
  </channel>
</rss>

