<?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: Create a Depot in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/create-a-depot/m-p/4958334#M783603</link>
    <description>I have found a solution to this question</description>
    <pubDate>Thu, 27 Apr 2006 06:01:36 GMT</pubDate>
    <dc:creator>Danny Crisp</dc:creator>
    <dc:date>2006-04-27T06:01:36Z</dc:date>
    <item>
      <title>Create a Depot</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/create-a-depot/m-p/4958324#M783593</link>
      <description>I have installed some software via a tar file into (lets say /opt/software for argument sake).  I now want create a depot using the contents of /opt/software.  Is this possible?</description>
      <pubDate>Wed, 08 Feb 2006 12:42:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/create-a-depot/m-p/4958324#M783593</guid>
      <dc:creator>Danny Crisp</dc:creator>
      <dc:date>2006-02-08T12:42:40Z</dc:date>
    </item>
    <item>
      <title>Re: Create a Depot</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/create-a-depot/m-p/4958325#M783594</link>
      <description>Hi Danny:&lt;BR /&gt;&lt;BR /&gt;Have a look at 'swpackage'.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://docs.hp.com/en/B2355-90754/index.html" target="_blank"&gt;http://docs.hp.com/en/B2355-90754/index.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Wed, 08 Feb 2006 12:45:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/create-a-depot/m-p/4958325#M783594</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2006-02-08T12:45:40Z</dc:date>
    </item>
    <item>
      <title>Re: Create a Depot</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/create-a-depot/m-p/4958326#M783595</link>
      <description>You need to create a Product Specification File (psf) and use swpackage.  See:  man swpackage&lt;BR /&gt;&lt;BR /&gt;Paul</description>
      <pubDate>Wed, 08 Feb 2006 12:47:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/create-a-depot/m-p/4958326#M783595</guid>
      <dc:creator>Paul F. Carlson</dc:creator>
      <dc:date>2006-02-08T12:47:28Z</dc:date>
    </item>
    <item>
      <title>Re: Create a Depot</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/create-a-depot/m-p/4958327#M783596</link>
      <description>And another good link for you - nice script to create psf for you:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.hpworks.org.uk/newsletter/articles/depots/" target="_blank"&gt;http://www.hpworks.org.uk/newsletter/articles/depots/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Rgds...Geoff</description>
      <pubDate>Wed, 08 Feb 2006 12:59:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/create-a-depot/m-p/4958327#M783596</guid>
      <dc:creator>Geoff Wild</dc:creator>
      <dc:date>2006-02-08T12:59:00Z</dc:date>
    </item>
    <item>
      <title>Re: Create a Depot</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/create-a-depot/m-p/4958328#M783597</link>
      <description>I'll second Geoff's recommendation for the web site. Even if you don't have and don't want Perl on your system, the sample psf file is very helpful. I used it as my template on an assignment in 2004. The SD-UX documentation is also a must read and it explains swpackage, the options for the psf file, and a lot of other stuff in great detail.</description>
      <pubDate>Wed, 08 Feb 2006 13:23:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/create-a-depot/m-p/4958328#M783597</guid>
      <dc:creator>Jeff_Traigle</dc:creator>
      <dc:date>2006-02-08T13:23:38Z</dc:date>
    </item>
    <item>
      <title>Re: Create a Depot</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/create-a-depot/m-p/4958329#M783598</link>
      <description>I'll give you a detailed example - as I just did this for Sarcheck.&lt;BR /&gt;&lt;BR /&gt;cd /usr/local/src&lt;BR /&gt;mkdir SarCheck-v6.01.02&lt;BR /&gt;cd SarCheck-v6.01.01&lt;BR /&gt;&lt;BR /&gt;zcat &amp;lt; /usr/local/src/SCHP.TAZ | tar tvf -&lt;BR /&gt;mv /opt/sarcheck/* .&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Modified psf to go to /opt&lt;BR /&gt;&lt;BR /&gt;cd /usr/local/src&lt;BR /&gt;psf SarCheck-v6.01.02 &amp;gt; SarCheck.psf&lt;BR /&gt;&lt;BR /&gt;Set some minor stuff:&lt;BR /&gt;vi SarCheck.psf&lt;BR /&gt;&lt;BR /&gt;swpackage -vv -s SarCheck.psf @ /var/software/hp/SarCheck&lt;BR /&gt;swreg -l depot /var/software/hp/SarCheck&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Here's my psf file:&lt;BR /&gt;&lt;BR /&gt;# cat SarCheck.psf&lt;BR /&gt;&lt;BR /&gt;product&lt;BR /&gt;   tag                  SARCHECK&lt;BR /&gt;   revision             6.01.02&lt;BR /&gt;   title                SarCheck Performance Analyzer&lt;BR /&gt;   fileset&lt;BR /&gt;      tag               sarcheck&lt;BR /&gt;      directory         SarCheck-v6.01.02=/opt/sarcheck&lt;BR /&gt;      file              hpsar22&lt;BR /&gt;      directory         SarCheck-v6.01.02/ps=/opt/sarcheck/ps&lt;BR /&gt;      file              *&lt;BR /&gt;      directory         SarCheck-v6.01.02/bin=/opt/sarcheck/bin&lt;BR /&gt;      file              analyze9000&lt;BR /&gt;      file              freemem&lt;BR /&gt;      file              ondemand&lt;BR /&gt;      file              ps1&lt;BR /&gt;      file              ps2&lt;BR /&gt;      file              sarcheck&lt;BR /&gt;      file              vg1&lt;BR /&gt;      file              vgparse&lt;BR /&gt;      directory         SarCheck-v6.01.02/doc=/opt/sarcheck/doc&lt;BR /&gt;      file              hcpu_600.png&lt;BR /&gt;      file              hdkbusy_600.png&lt;BR /&gt;      file              hfree_600.png&lt;BR /&gt;      file              hinode_600.png&lt;BR /&gt;      file              hopenfile_600.png&lt;BR /&gt;      file              hpcount_600.png&lt;BR /&gt;      file              hpman601.html&lt;BR /&gt;      file              hrunq_600.png&lt;BR /&gt;      file              hswout_600.png&lt;BR /&gt;      directory         SarCheck-v6.01.02/etc=/opt/sarcheck/etc&lt;BR /&gt;      file              analyze_key&lt;BR /&gt;      file              analyze_txt&lt;BR /&gt;   end&lt;BR /&gt;end&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Rgds...Geoff&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 08 Feb 2006 14:19:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/create-a-depot/m-p/4958329#M783598</guid>
      <dc:creator>Geoff Wild</dc:creator>
      <dc:date>2006-02-08T14:19:49Z</dc:date>
    </item>
    <item>
      <title>Re: Create a Depot</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/create-a-depot/m-p/4958330#M783599</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;first you have to create the depot using &lt;BR /&gt;&lt;BR /&gt;#swpackage &lt;BR /&gt;&lt;BR /&gt;And latter user &lt;BR /&gt;&lt;BR /&gt;#swreg&lt;BR /&gt;&lt;BR /&gt;to register&lt;BR /&gt;&lt;BR /&gt;With Regards,&lt;BR /&gt;&lt;BR /&gt;Siva.</description>
      <pubDate>Thu, 09 Feb 2006 00:56:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/create-a-depot/m-p/4958330#M783599</guid>
      <dc:creator>Sivakumar TS</dc:creator>
      <dc:date>2006-02-09T00:56:03Z</dc:date>
    </item>
    <item>
      <title>Re: Create a Depot</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/create-a-depot/m-p/4958331#M783600</link>
      <description>You have to create a product specification file.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://docs.hp.com/en/B2355-90107/ch10.html" target="_blank"&gt;http://docs.hp.com/en/B2355-90107/ch10.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Then create a package with swpackage.&lt;BR /&gt;&lt;BR /&gt;--&lt;BR /&gt;Muthu</description>
      <pubDate>Thu, 09 Feb 2006 01:56:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/create-a-depot/m-p/4958331#M783600</guid>
      <dc:creator>Muthukumar_5</dc:creator>
      <dc:date>2006-02-09T01:56:21Z</dc:date>
    </item>
    <item>
      <title>Re: Create a Depot</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/create-a-depot/m-p/4958332#M783601</link>
      <description>Use this document for SD-UX.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://docs.hp.com/en/B2355-90740/index.html" target="_blank"&gt;http://docs.hp.com/en/B2355-90740/index.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;--&lt;BR /&gt;Muthu</description>
      <pubDate>Thu, 09 Feb 2006 01:57:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/create-a-depot/m-p/4958332#M783601</guid>
      <dc:creator>Muthukumar_5</dc:creator>
      <dc:date>2006-02-09T01:57:38Z</dc:date>
    </item>
    <item>
      <title>Re: Create a Depot</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/create-a-depot/m-p/4958333#M783602</link>
      <description>For folks new to PSF files, 'swpackage', and the endless syntax options, consider using the free application Software Package Builder (SPB) instead.&lt;BR /&gt;&lt;BR /&gt;More about this tool here: &lt;A href="http://docs.hp.com/en/SPB/index.html" target="_blank"&gt;http://docs.hp.com/en/SPB/index.html&lt;/A&gt;</description>
      <pubDate>Fri, 10 Feb 2006 12:06:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/create-a-depot/m-p/4958333#M783602</guid>
      <dc:creator>Scot Bean</dc:creator>
      <dc:date>2006-02-10T12:06:31Z</dc:date>
    </item>
    <item>
      <title>Re: Create a Depot</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/create-a-depot/m-p/4958334#M783603</link>
      <description>I have found a solution to this question</description>
      <pubDate>Thu, 27 Apr 2006 06:01:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/create-a-depot/m-p/4958334#M783603</guid>
      <dc:creator>Danny Crisp</dc:creator>
      <dc:date>2006-04-27T06:01:36Z</dc:date>
    </item>
  </channel>
</rss>

