<?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: depot file creation in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/depot-file-creation/m-p/3690101#M247028</link>
    <description>Creating a Patch Depot&lt;BR /&gt;1. Create a Patch Depot:&lt;BR /&gt;&lt;BR /&gt;Obtain the set of patches you want to place and manage in an SD depot. For example:&lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt;PHCO_7891 PHCO_9348 PHKL_9361 PHSS_7726 PHSS_8966 PHSS_9400 PHCO_8353 PHKL_8376 PHKL_9569 PHSS_8667 PHSS_9201 &lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt;HP patches as delivered by the Response Center or the HP Web site are shar files consisting of a product depot and README file.&lt;BR /&gt;&lt;BR /&gt;2. Unshar the patches: &lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt;# for i in PH* &lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt;do &lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt;sh $i  &lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt;done &lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt;3. Combine all these separate depots into one depot.&lt;BR /&gt;&lt;BR /&gt;To do this, use the swcopy command. First, create the directory to store the patches:&lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt; # mkdir /var/opt/ignite/Patches &lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt;4. Now take the patch depots and copy them into the target depot: &lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt;# for i in PH*.depot &lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; do &lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; swcopy -s ${PWD}/$i \* @ /var/opt/ignite/Patches &lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; done &lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt;5. Verify the contents of the depot:&lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt;# swlist -d @ /var/opt/ignite/Patches &lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt;Assuming the above example list of patches, you would see the following:&lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt;# Initializing... &lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt;# Contacting target "interop1"... &lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt;#  &lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt;# Target: interop1:/var/opt/ignite/Patches &lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; # &lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; # &lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; # No Bundle(s) on interop1:/var/opt/ignite/Patches &lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; # Product(s): &lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; # &lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; PHCO_7891 B.10.00.00.AA allows mount to turnon hfs-specific opts PHCO_8353 B.10.00.00.AA cumulative awk(1) patch PHCO_9348 B.10.00.00.AA cron(1M) and at(1) patch PHKL_8376 B.10.00.00.AA Fix vmtrace bug. PHKL_9361 B.10.00.00.AA Fix panic caused by MP race PHKL_9569 B.10.00.00.AA NFS and VxFS (JFS) cumulative patch PHSS_7726 B.10.00.00.AA CDE Dtterm August 96 patch PHSS_8667 B.10.00.00.AA CDE Runtime Nov96 Patch PHSS_8966 B.10.00.00.AA LIBCL cumulative patch PHSS_9201 B.10.00.00.AA fix for aC++ dld.sl PHSS_9400 B.10.00.00.AA ld(1) cumulative patch &lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt;In the above output, swlist states that the depot has "No Bundles". HP-UX Patches are SD "products", but Ignite-UX can only manage SD "Bundles".&lt;BR /&gt;&lt;BR /&gt;6. Convert the individual patches into a single bundle using the /opt/ignite/bin/make_bundles command. Run the script and create a bundle in the Patches depot:&lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt; # make_bundles -B -n Misc_Patches -t "HP-UX 11.00 Patches" \ /var/opt/ignite/Patches &lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt;7. Rerun swlist on this depot to verify the Bundle has been created:&lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt; # swlist -d @ /var/opt/ignite/Patches &lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt;(Output of swlist command assuming the example patches)&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt;# Initializing...# Contacting target "interop1"...# # Target: interop1:/var/opt/ignite/Patches ## # Bundle(s): # Misc_Patches HP-UX 11.00 Patches &lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt;The default behavior of swlist is to now show only the higher level software bundles. Individual patches in the bundle can still be viewed by using swlist options. The following will show the patch "products" contained in the bundle:&lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt; # swlist -l product -d @ /var/opt/ignite/Patches &lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt;  &lt;BR /&gt; &lt;BR /&gt; Note:  If you need to add additional patches to the depot in the future, simply unshar the patches as described above, swcopy them into the Patches depot, and rerun the "make_bundles" command. This will repackage the depot.&lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt;  &lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt;If you would like to remove a Patch from the depot, simply use the swremove command. You can either run swremove and use its friendlier user-interface, or run swremove in command line mode. The following will remove the PHKL_8376 patch from the bundle:&lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt; # swremove -d Misc_Patches.PHKL_8376 @ /var/opt/ignite/Patches &lt;BR /&gt; &lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;Awadhesh</description>
    <pubDate>Tue, 13 Dec 2005 04:19:24 GMT</pubDate>
    <dc:creator>AwadheshPandey</dc:creator>
    <dc:date>2005-12-13T04:19:24Z</dc:date>
    <item>
      <title>depot file creation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/depot-file-creation/m-p/3690094#M247021</link>
      <description>Dear Sirs,&lt;BR /&gt;&lt;BR /&gt;How depot files are created ?&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Shiv</description>
      <pubDate>Tue, 13 Dec 2005 00:20:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/depot-file-creation/m-p/3690094#M247021</guid>
      <dc:creator>Shivkumar</dc:creator>
      <dc:date>2005-12-13T00:20:03Z</dc:date>
    </item>
    <item>
      <title>Re: depot file creation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/depot-file-creation/m-p/3690095#M247022</link>
      <description>Shiv, Depots are managed SD(Software Distributor) or SD-UX. You can find more information here, &lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://docs.hp.com/en/5990-6771/ch02s02.html" target="_blank"&gt;http://docs.hp.com/en/5990-6771/ch02s02.html&lt;/A&gt;&lt;BR /&gt;&lt;A href="http://www.unixadm.net/howto/create_depot.html" target="_blank"&gt;http://www.unixadm.net/howto/create_depot.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;mainly depots consists of PSF file, Control scripts like Preinstall, post install, configure, etc.. &lt;BR /&gt;&lt;BR /&gt;-Arun</description>
      <pubDate>Tue, 13 Dec 2005 00:52:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/depot-file-creation/m-p/3690095#M247022</guid>
      <dc:creator>Arunvijai_4</dc:creator>
      <dc:date>2005-12-13T00:52:07Z</dc:date>
    </item>
    <item>
      <title>Re: depot file creation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/depot-file-creation/m-p/3690096#M247023</link>
      <description>Hi Shiv,&lt;BR /&gt;Refer to the doc attached.&lt;BR /&gt;Go thr' "man swpackage".&lt;BR /&gt;Also have a look at swreg,swinstall,swlist and swremove commands.&lt;BR /&gt;&lt;BR /&gt;Hope that helps.&lt;BR /&gt;Regards,&lt;BR /&gt;</description>
      <pubDate>Tue, 13 Dec 2005 01:00:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/depot-file-creation/m-p/3690096#M247023</guid>
      <dc:creator>Bharat Katkar</dc:creator>
      <dc:date>2005-12-13T01:00:14Z</dc:date>
    </item>
    <item>
      <title>Re: depot file creation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/depot-file-creation/m-p/3690097#M247024</link>
      <description>Hi Shivkumar,&lt;BR /&gt;&lt;BR /&gt;To know more about SD Depot creation for thru the SD UX. Depot creation is pretty simple. &lt;BR /&gt;&lt;BR /&gt;You need to create one &lt;XYZ&gt;.psf file Product Specification File. This &lt;XYZ&gt;.psf file is the input file for SD command "swpackage" like&lt;BR /&gt;&lt;BR /&gt;# /usr/sbin/swpackage -v -s XYZ.psf -x target_type=tape @ &lt;PACKAGENAME&gt;.depot&lt;BR /&gt;&lt;BR /&gt;Refer this pdf for more in detail.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://docs.hp.com/en/B2355-90789/B2355-90789.pdf" target="_blank"&gt;http://docs.hp.com/en/B2355-90789/B2355-90789.pdf&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;Rajesh&lt;BR /&gt;&lt;/PACKAGENAME&gt;&lt;/XYZ&gt;&lt;/XYZ&gt;</description>
      <pubDate>Tue, 13 Dec 2005 01:05:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/depot-file-creation/m-p/3690097#M247024</guid>
      <dc:creator>Rajesh SB</dc:creator>
      <dc:date>2005-12-13T01:05:09Z</dc:date>
    </item>
    <item>
      <title>Re: depot file creation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/depot-file-creation/m-p/3690098#M247025</link>
      <description>Some usefull threads, &lt;BR /&gt;&lt;A href="http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=951560" target="_blank"&gt;http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=951560&lt;/A&gt;&lt;BR /&gt;&lt;A href="http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=973939" target="_blank"&gt;http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=973939&lt;/A&gt;&lt;BR /&gt;&lt;A href="http://docs.hp.com/en/SD/cookbook.html" target="_blank"&gt;http://docs.hp.com/en/SD/cookbook.html&lt;/A&gt;&lt;BR /&gt;[SD cook book] &lt;BR /&gt;&lt;BR /&gt;-Arun</description>
      <pubDate>Tue, 13 Dec 2005 01:14:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/depot-file-creation/m-p/3690098#M247025</guid>
      <dc:creator>Arunvijai_4</dc:creator>
      <dc:date>2005-12-13T01:14:38Z</dc:date>
    </item>
    <item>
      <title>Re: depot file creation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/depot-file-creation/m-p/3690099#M247026</link>
      <description>Hi Shiv,&lt;BR /&gt;&lt;BR /&gt;i sometimes use the link below when i want to&lt;BR /&gt;create depot &lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://docs.hp.com/en/SD/cookbook.html" target="_blank"&gt;http://docs.hp.com/en/SD/cookbook.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Good Luck,</description>
      <pubDate>Tue, 13 Dec 2005 03:18:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/depot-file-creation/m-p/3690099#M247026</guid>
      <dc:creator>Cem Tugrul</dc:creator>
      <dc:date>2005-12-13T03:18:23Z</dc:date>
    </item>
    <item>
      <title>Re: depot file creation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/depot-file-creation/m-p/3690100#M247027</link>
      <description>Refer this:&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;It is having everything. See man pages of sd, swpackage and SEE Also part pages.&lt;BR /&gt;&lt;BR /&gt;-Muthu</description>
      <pubDate>Tue, 13 Dec 2005 03:32:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/depot-file-creation/m-p/3690100#M247027</guid>
      <dc:creator>Muthukumar_5</dc:creator>
      <dc:date>2005-12-13T03:32:45Z</dc:date>
    </item>
    <item>
      <title>Re: depot file creation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/depot-file-creation/m-p/3690101#M247028</link>
      <description>Creating a Patch Depot&lt;BR /&gt;1. Create a Patch Depot:&lt;BR /&gt;&lt;BR /&gt;Obtain the set of patches you want to place and manage in an SD depot. For example:&lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt;PHCO_7891 PHCO_9348 PHKL_9361 PHSS_7726 PHSS_8966 PHSS_9400 PHCO_8353 PHKL_8376 PHKL_9569 PHSS_8667 PHSS_9201 &lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt;HP patches as delivered by the Response Center or the HP Web site are shar files consisting of a product depot and README file.&lt;BR /&gt;&lt;BR /&gt;2. Unshar the patches: &lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt;# for i in PH* &lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt;do &lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt;sh $i  &lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt;done &lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt;3. Combine all these separate depots into one depot.&lt;BR /&gt;&lt;BR /&gt;To do this, use the swcopy command. First, create the directory to store the patches:&lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt; # mkdir /var/opt/ignite/Patches &lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt;4. Now take the patch depots and copy them into the target depot: &lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt;# for i in PH*.depot &lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; do &lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; swcopy -s ${PWD}/$i \* @ /var/opt/ignite/Patches &lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; done &lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt;5. Verify the contents of the depot:&lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt;# swlist -d @ /var/opt/ignite/Patches &lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt;Assuming the above example list of patches, you would see the following:&lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt;# Initializing... &lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt;# Contacting target "interop1"... &lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt;#  &lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt;# Target: interop1:/var/opt/ignite/Patches &lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; # &lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; # &lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; # No Bundle(s) on interop1:/var/opt/ignite/Patches &lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; # Product(s): &lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; # &lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; PHCO_7891 B.10.00.00.AA allows mount to turnon hfs-specific opts PHCO_8353 B.10.00.00.AA cumulative awk(1) patch PHCO_9348 B.10.00.00.AA cron(1M) and at(1) patch PHKL_8376 B.10.00.00.AA Fix vmtrace bug. PHKL_9361 B.10.00.00.AA Fix panic caused by MP race PHKL_9569 B.10.00.00.AA NFS and VxFS (JFS) cumulative patch PHSS_7726 B.10.00.00.AA CDE Dtterm August 96 patch PHSS_8667 B.10.00.00.AA CDE Runtime Nov96 Patch PHSS_8966 B.10.00.00.AA LIBCL cumulative patch PHSS_9201 B.10.00.00.AA fix for aC++ dld.sl PHSS_9400 B.10.00.00.AA ld(1) cumulative patch &lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt;In the above output, swlist states that the depot has "No Bundles". HP-UX Patches are SD "products", but Ignite-UX can only manage SD "Bundles".&lt;BR /&gt;&lt;BR /&gt;6. Convert the individual patches into a single bundle using the /opt/ignite/bin/make_bundles command. Run the script and create a bundle in the Patches depot:&lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt; # make_bundles -B -n Misc_Patches -t "HP-UX 11.00 Patches" \ /var/opt/ignite/Patches &lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt;7. Rerun swlist on this depot to verify the Bundle has been created:&lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt; # swlist -d @ /var/opt/ignite/Patches &lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt;(Output of swlist command assuming the example patches)&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt;# Initializing...# Contacting target "interop1"...# # Target: interop1:/var/opt/ignite/Patches ## # Bundle(s): # Misc_Patches HP-UX 11.00 Patches &lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt;The default behavior of swlist is to now show only the higher level software bundles. Individual patches in the bundle can still be viewed by using swlist options. The following will show the patch "products" contained in the bundle:&lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt; # swlist -l product -d @ /var/opt/ignite/Patches &lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt;  &lt;BR /&gt; &lt;BR /&gt; Note:  If you need to add additional patches to the depot in the future, simply unshar the patches as described above, swcopy them into the Patches depot, and rerun the "make_bundles" command. This will repackage the depot.&lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt;  &lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt;If you would like to remove a Patch from the depot, simply use the swremove command. You can either run swremove and use its friendlier user-interface, or run swremove in command line mode. The following will remove the PHKL_8376 patch from the bundle:&lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt; # swremove -d Misc_Patches.PHKL_8376 @ /var/opt/ignite/Patches &lt;BR /&gt; &lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;Awadhesh</description>
      <pubDate>Tue, 13 Dec 2005 04:19:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/depot-file-creation/m-p/3690101#M247028</guid>
      <dc:creator>AwadheshPandey</dc:creator>
      <dc:date>2005-12-13T04:19:24Z</dc:date>
    </item>
    <item>
      <title>Re: depot file creation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/depot-file-creation/m-p/3690102#M247029</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;In HPUX, SD-UX software manager. Use #man sd to find all commands available with SD-UX&lt;BR /&gt;&lt;BR /&gt;You can use swpackage command to create the Software Depots. See #man swpackage. &lt;BR /&gt;Synopsis&lt;BR /&gt;swpackage [-p] [-v] [-s directory] [-x option=value]&lt;BR /&gt;[s/w_selections] [@ target]&lt;BR /&gt;&lt;BR /&gt;swpackage packages software products into a depot(directory or tape).&lt;BR /&gt;&lt;BR /&gt;You can use the same command to re-package the entire depots also.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Sunil&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 13 Dec 2005 05:07:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/depot-file-creation/m-p/3690102#M247029</guid>
      <dc:creator>Sยภเl Kย๓คг</dc:creator>
      <dc:date>2005-12-13T05:07:14Z</dc:date>
    </item>
  </channel>
</rss>

