<?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 software depot setup in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/software-depot-setup/m-p/4034929#M506446</link>
    <description>Hello&lt;BR /&gt;&lt;BR /&gt;Can someone explain to me exactly what will the software depot setup will do?  Will it just copy the depot or will it actually do an install from the depot?  If it is just copying, where will it be copied to and how much space will it require?  If it is copying the depot, can I change the default to where I want it copied to?&lt;BR /&gt;&lt;BR /&gt;Thanks in advance.</description>
    <pubDate>Tue, 10 Jul 2007 09:16:52 GMT</pubDate>
    <dc:creator>valcor</dc:creator>
    <dc:date>2007-07-10T09:16:52Z</dc:date>
    <item>
      <title>software depot setup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/software-depot-setup/m-p/4034929#M506446</link>
      <description>Hello&lt;BR /&gt;&lt;BR /&gt;Can someone explain to me exactly what will the software depot setup will do?  Will it just copy the depot or will it actually do an install from the depot?  If it is just copying, where will it be copied to and how much space will it require?  If it is copying the depot, can I change the default to where I want it copied to?&lt;BR /&gt;&lt;BR /&gt;Thanks in advance.</description>
      <pubDate>Tue, 10 Jul 2007 09:16:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/software-depot-setup/m-p/4034929#M506446</guid>
      <dc:creator>valcor</dc:creator>
      <dc:date>2007-07-10T09:16:52Z</dc:date>
    </item>
    <item>
      <title>Re: software depot setup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/software-depot-setup/m-p/4034930#M506447</link>
      <description>Are you asking about a special depot?&lt;BR /&gt;(because you are asking about the size ...)&lt;BR /&gt;&lt;BR /&gt;The swinstall process will do some checking and install the software included in the depot.</description>
      <pubDate>Tue, 10 Jul 2007 09:18:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/software-depot-setup/m-p/4034930#M506447</guid>
      <dc:creator>Torsten.</dc:creator>
      <dc:date>2007-07-10T09:18:49Z</dc:date>
    </item>
    <item>
      <title>Re: software depot setup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/software-depot-setup/m-p/4034931#M506448</link>
      <description>Sorry, I was unclear with my question.  This is during the initial setup of the Ignite server.  There is a step "Software depot setup".  I was given 3 options, copy from a CD/DVD, use CD/DVD or use Installed Depot.</description>
      <pubDate>Tue, 10 Jul 2007 09:23:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/software-depot-setup/m-p/4034931#M506448</guid>
      <dc:creator>valcor</dc:creator>
      <dc:date>2007-07-10T09:23:42Z</dc:date>
    </item>
    <item>
      <title>Re: software depot setup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/software-depot-setup/m-p/4034932#M506449</link>
      <description>Shalom,&lt;BR /&gt;&lt;BR /&gt;Lets say I have a depot in a directory called /depot&lt;BR /&gt;&lt;BR /&gt;cd /depot&lt;BR /&gt;du -sk&lt;BR /&gt;&lt;BR /&gt;If I use the create_depot command HP provides with patch downloads or swcopy myself the resulting depot will be approximately the size of the software I swcopy (both methods actually use swcopy).  Give or take a few percentage points.&lt;BR /&gt;&lt;BR /&gt;swcopy has a -p command which previews the software copy and might give you more accurate data.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Tue, 10 Jul 2007 09:24:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/software-depot-setup/m-p/4034932#M506449</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2007-07-10T09:24:52Z</dc:date>
    </item>
    <item>
      <title>Re: software depot setup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/software-depot-setup/m-p/4034933#M506450</link>
      <description>Hi:&lt;BR /&gt;&lt;BR /&gt;One uses 'swcopy' to copy software into a 'depot' for installation.  Using 'swcopy' does *not* cause any installation.  Installation is performed by 'swinstall'.&lt;BR /&gt;&lt;BR /&gt;The space required will be somewhat more than the sum of the sizes of the individual components.  You can specify the depot location using any valid absolute path.&lt;BR /&gt;&lt;BR /&gt;There is no need to explicitly register a depot with 'swreg' unless you intend to use the depot remotely from another server.&lt;BR /&gt;&lt;BR /&gt;It is very common to specify '-x enforce_dependencies=false' when building or adding a depot of patches.  This allows patches to be added to a depot when all of their co-requisites or dependent patches are *not* ultimately contained within the depot.  That is, you defer the dependency analysis until you actually install the contents of the depot with 'swinstall'.  If you attempt to perform the 'swcopy' with '-x enforce_dependencies=true' you must satisfy the requirement wholly with the depot contents.&lt;BR /&gt;&lt;BR /&gt;For example:&lt;BR /&gt;&lt;BR /&gt;# swcopy -v -s BUNDLENAME -x enforce_dependencies=false \* @ /var/tmp/swdepot&lt;BR /&gt;&lt;BR /&gt;...would copy all of the contents of BUNDLENAME into a depot named /var/tmp/swdepot (a common default one).&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Tue, 10 Jul 2007 09:27:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/software-depot-setup/m-p/4034933#M506450</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2007-07-10T09:27:26Z</dc:date>
    </item>
    <item>
      <title>Re: software depot setup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/software-depot-setup/m-p/4034934#M506451</link>
      <description>It copies the install media to a default location or one you choose so you can Ignite or Install from the Ignite server to multiple, remote targets.</description>
      <pubDate>Tue, 10 Jul 2007 18:24:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/software-depot-setup/m-p/4034934#M506451</guid>
      <dc:creator>Scot Bean</dc:creator>
      <dc:date>2007-07-10T18:24:36Z</dc:date>
    </item>
    <item>
      <title>Re: software depot setup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/software-depot-setup/m-p/4034935#M506452</link>
      <description>also Just try "swcopy" and it will take u to a CLI interactive menu..It ask source,dest etc and more easy</description>
      <pubDate>Tue, 10 Jul 2007 20:59:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/software-depot-setup/m-p/4034935#M506452</guid>
      <dc:creator>skt_skt</dc:creator>
      <dc:date>2007-07-10T20:59:17Z</dc:date>
    </item>
  </channel>
</rss>

