<?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: Creating new Depot in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-new-depot/m-p/5111386#M446044</link>
    <description>What you need is swcopy instead of swpackage.&lt;BR /&gt;&lt;BR /&gt;With swcopy you can combine several depots to one.</description>
    <pubDate>Thu, 29 May 2008 18:54:40 GMT</pubDate>
    <dc:creator>Torsten.</dc:creator>
    <dc:date>2008-05-29T18:54:40Z</dc:date>
    <item>
      <title>Creating new Depot</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-new-depot/m-p/5111385#M446043</link>
      <description>We are trying to install vim and there are several dependencies so we want to create a depot for vim and all its dependencies.  It doesnâ  t seem to be working for me and I am not sure.  Here are the steps that I have been taking.&lt;BR /&gt;&lt;BR /&gt;Root:  /software ï ¨ mkdir /software/vim/depot&lt;BR /&gt;Swpackage â  s vim-7.1-hppa-11.23.depot â  d /software/vim/depot&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;As for the vim file I downloaded it from this website:  &lt;A href="http://hpux.cs.utah.edu/hppd/hpux/" target="_blank"&gt;http://hpux.cs.utah.edu/hppd/hpux/&lt;/A&gt; which was saved to my PC with the .gz extension.  After ftping it to my UNIX server I unzipped the file.  Is it possible that I messed up the file somewhere along the way?&lt;BR /&gt;</description>
      <pubDate>Thu, 29 May 2008 18:43:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/creating-new-depot/m-p/5111385#M446043</guid>
      <dc:creator>Jeffrey F. Goldsmith</dc:creator>
      <dc:date>2008-05-29T18:43:11Z</dc:date>
    </item>
    <item>
      <title>Re: Creating new Depot</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-new-depot/m-p/5111386#M446044</link>
      <description>What you need is swcopy instead of swpackage.&lt;BR /&gt;&lt;BR /&gt;With swcopy you can combine several depots to one.</description>
      <pubDate>Thu, 29 May 2008 18:54:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/creating-new-depot/m-p/5111386#M446044</guid>
      <dc:creator>Torsten.</dc:creator>
      <dc:date>2008-05-29T18:54:40Z</dc:date>
    </item>
    <item>
      <title>Re: Creating new Depot</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-new-depot/m-p/5111387#M446045</link>
      <description>&lt;!--!*#--&gt;Hi Jeffrey:&lt;BR /&gt;&lt;BR /&gt;Use 'swcopy' to collect everything you need or want in one depot file:&lt;BR /&gt;&lt;BR /&gt;# swcopy  -v -s /tmp/vim-7.1-hppa-11.23.depot -x enforce_dependencies=false \* @ /var/tmp/swdepot&lt;BR /&gt;&lt;BR /&gt;...then to add "something" more:&lt;BR /&gt;&lt;BR /&gt;# swcopy  -v -s /tmp/something.depot -x enforce_dependencies=false \* @ /var/tmp/swdepot&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 29 May 2008 18:54:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/creating-new-depot/m-p/5111387#M446045</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2008-05-29T18:54:45Z</dc:date>
    </item>
    <item>
      <title>Re: Creating new Depot</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-new-depot/m-p/5111388#M446046</link>
      <description>You're trying to use the wrong command.&lt;BR /&gt;&lt;BR /&gt;You already have one depot - that is, your vim-7.1-hppa-11.23.depot file. You want to copy it and any dependencies to a common location for installation. The command you need is "swcopy".&lt;BR /&gt;&lt;BR /&gt;Background:&lt;BR /&gt;A depot can exist in two forms - a "directory depot" (a directory with a set of sub-directories and files in it) or a "tape depot" (usually a .depot file these days, but it could also be written on a tape, hence the name).&lt;BR /&gt;&lt;BR /&gt;A directory depot is the form that is generally more flexible for sysadmin tasks: it can be accessed remotely between HP-UX hosts and it's easy to add other things to a directory depot. However, to move it around, you must copy the entire directory structure of the depot and then register the depot in its new location using swreg, which might be inconvenient.&lt;BR /&gt;&lt;BR /&gt;A tape depot is more easy to move around: just a single big file. But you can install it only locally, and you cannot change its contents without first transforming it to a directory depot.&lt;BR /&gt;&lt;BR /&gt;In this case, the command you need is:&lt;BR /&gt;swcopy -s /full/path/to/vim-7.1-hppa-11.23.depot vim @ /software/vim/depot&lt;BR /&gt;&lt;BR /&gt;(i.e. swcopy -s &lt;FROM_WHERE&gt; &lt;WHAT&gt; @ &lt;TO_WHERE&gt;)&lt;BR /&gt;&lt;BR /&gt;Then execute a similar command with all the dependencies of vim, keeping the "@ /software/vim/depot" part the same.&lt;BR /&gt;&lt;BR /&gt;The input of swcopy may be a tape depot or another directory depot, but the output will always be a directory depot.&lt;BR /&gt;&lt;BR /&gt;The swpackage command can be used to convert a directory depot into a tape depot, or with an well-written PSF file it can package any old set of loose files into a swinstall-installable "product" and store it in a new depot.&lt;BR /&gt;&lt;BR /&gt;MK&lt;/TO_WHERE&gt;&lt;/WHAT&gt;&lt;/FROM_WHERE&gt;</description>
      <pubDate>Thu, 29 May 2008 19:09:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/creating-new-depot/m-p/5111388#M446046</guid>
      <dc:creator>Matti_Kurkela</dc:creator>
      <dc:date>2008-05-29T19:09:57Z</dc:date>
    </item>
    <item>
      <title>Re: Creating new Depot</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-new-depot/m-p/5111389#M446047</link>
      <description>I was supplied with the information I needed to compleate my task.&lt;BR /&gt;</description>
      <pubDate>Thu, 29 May 2008 22:03:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/creating-new-depot/m-p/5111389#M446047</guid>
      <dc:creator>Jeffrey F. Goldsmith</dc:creator>
      <dc:date>2008-05-29T22:03:58Z</dc:date>
    </item>
  </channel>
</rss>

