<?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: patch bundles in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/patch-bundles/m-p/2842111#M91415</link>
    <description>Hi &lt;BR /&gt;extract all the depots to a temp directory. &lt;BR /&gt;create a depot directory &lt;BR /&gt;mkdir /tmp/depot &lt;BR /&gt;swcopy all the depot from the temp directory to the depot directory &lt;BR /&gt;swcopy -s /temp @ /tmp/depot &lt;BR /&gt;swreg the depot as &lt;BR /&gt;swreg -l depot /tmp/depot &lt;BR /&gt;this will create a directory depot for you, to install use &lt;BR /&gt;swinstall -s /tmp/depot &lt;BR /&gt;But if you want to create tape depot that is useful to put onto a CD or tape , create a bundle using a psf file &lt;BR /&gt;swpackage -x media_type=tape -s bundle.psf @ /destiation &lt;BR /&gt;this will create a single .depot file. &lt;BR /&gt;Hope this helps. &lt;BR /&gt;&lt;BR /&gt;regard&lt;BR /&gt;baba</description>
    <pubDate>Mon, 11 Nov 2002 11:49:45 GMT</pubDate>
    <dc:creator>Punithan</dc:creator>
    <dc:date>2002-11-11T11:49:45Z</dc:date>
    <item>
      <title>patch bundles</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/patch-bundles/m-p/2842106#M91410</link>
      <description>Hi,&lt;BR /&gt;I need to create a patch bundle containing approximately 6 patches. I have searched the man pages but am not sure how to create this bundle from scratch. Can anybody help?&lt;BR /&gt;&lt;BR /&gt;Thanks in advance,&lt;BR /&gt;Trystan.</description>
      <pubDate>Mon, 11 Nov 2002 08:43:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/patch-bundles/m-p/2842106#M91410</guid>
      <dc:creator>trystan macdonald</dc:creator>
      <dc:date>2002-11-11T08:43:29Z</dc:date>
    </item>
    <item>
      <title>Re: patch bundles</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/patch-bundles/m-p/2842107#M91411</link>
      <description>Hi Trystan &lt;BR /&gt;&lt;BR /&gt;Download the patches into /tmp (for example) then the following will create a depot and install the patches. Don't forget to take a backup first. &lt;BR /&gt;&lt;BR /&gt;# cd /tmp &lt;BR /&gt;# for X in PH*.htm &lt;BR /&gt;&amp;gt; do &lt;BR /&gt;&amp;gt; sh ${X} &lt;BR /&gt;&amp;gt; done &lt;BR /&gt;&lt;BR /&gt;# PDIR=/tmp/patch_depot &lt;BR /&gt;# mkdir ${PDIR} &lt;BR /&gt;# for X in PH*.depot &lt;BR /&gt;&amp;gt; do &lt;BR /&gt;&amp;gt; swcopy -s ${PWD}/${X} \* @ ${PDIR} &lt;BR /&gt;&amp;gt; done &lt;BR /&gt;&lt;BR /&gt;# swlist -s ${PDIR}&lt;BR /&gt;#swinstall -x autoreboot=true -x patch_match_target=true -s /tmp/patches &lt;BR /&gt;&lt;BR /&gt;Cheers&lt;BR /&gt;Keely</description>
      <pubDate>Mon, 11 Nov 2002 09:00:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/patch-bundles/m-p/2842107#M91411</guid>
      <dc:creator>Keely Jackson</dc:creator>
      <dc:date>2002-11-11T09:00:48Z</dc:date>
    </item>
    <item>
      <title>Re: patch bundles</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/patch-bundles/m-p/2842108#M91412</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Have a look at this:&lt;BR /&gt;&lt;A href="http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x0a26eea29889d611abdb0090277a778c,00.html" target="_blank"&gt;http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x0a26eea29889d611abdb0090277a778c,00.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;or this:&lt;BR /&gt;&lt;A href="http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0xf086107d277ad611abdb0090277a778c,00.html" target="_blank"&gt;http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0xf086107d277ad611abdb0090277a778c,00.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;This is a very popular subject in the forum, if you use the search button in the top left hand corner and specify 'create patch bundle' there are a lot more threads.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;John</description>
      <pubDate>Mon, 11 Nov 2002 09:01:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/patch-bundles/m-p/2842108#M91412</guid>
      <dc:creator>John Palmer</dc:creator>
      <dc:date>2002-11-11T09:01:42Z</dc:date>
    </item>
    <item>
      <title>Re: patch bundles</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/patch-bundles/m-p/2842109#M91413</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;You can execute the following:&lt;BR /&gt;&lt;BR /&gt;for i in PHKL_XXX PHSS_YYY PHCO_ZZZ&lt;BR /&gt;do swcopy -s /tmp/$i.depot -x enforce_dependencies=false -x mount_all_filesystems=false \* @ /tmp/depot1 done &lt;BR /&gt;&lt;BR /&gt;(*) Change the patch names and the pathnames for the real ones.&lt;BR /&gt;&lt;BR /&gt;Best regards,&lt;BR /&gt;Manel.</description>
      <pubDate>Mon, 11 Nov 2002 10:28:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/patch-bundles/m-p/2842109#M91413</guid>
      <dc:creator>Manel Ventura</dc:creator>
      <dc:date>2002-11-11T10:28:29Z</dc:date>
    </item>
    <item>
      <title>Re: patch bundles</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/patch-bundles/m-p/2842110#M91414</link>
      <description>Ok lets say you have the patches in tmp e.g /tmp/PHKL_12345.depot&lt;BR /&gt;&lt;BR /&gt;1. create a depot e.g&lt;BR /&gt;   mkdir /tmp/depot/sripatch&lt;BR /&gt;&lt;BR /&gt;2. to copy the patches to the depot &lt;BR /&gt;  swcopy -s /tmp/PHKL_12345.depot PHKL_12345 @ /tmp/depot/sripatch&lt;BR /&gt;&lt;BR /&gt;3. do the second step to all the patches.&lt;BR /&gt;&lt;BR /&gt;4. to install thru the bundle &lt;BR /&gt;  swinstall -s /tmp/depot/sripatch&lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt;Thanks &amp;amp; Regards &amp;amp; Good Luck !!!&lt;BR /&gt;Sri&lt;BR /&gt;</description>
      <pubDate>Mon, 11 Nov 2002 11:42:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/patch-bundles/m-p/2842110#M91414</guid>
      <dc:creator>Sritharan</dc:creator>
      <dc:date>2002-11-11T11:42:57Z</dc:date>
    </item>
    <item>
      <title>Re: patch bundles</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/patch-bundles/m-p/2842111#M91415</link>
      <description>Hi &lt;BR /&gt;extract all the depots to a temp directory. &lt;BR /&gt;create a depot directory &lt;BR /&gt;mkdir /tmp/depot &lt;BR /&gt;swcopy all the depot from the temp directory to the depot directory &lt;BR /&gt;swcopy -s /temp @ /tmp/depot &lt;BR /&gt;swreg the depot as &lt;BR /&gt;swreg -l depot /tmp/depot &lt;BR /&gt;this will create a directory depot for you, to install use &lt;BR /&gt;swinstall -s /tmp/depot &lt;BR /&gt;But if you want to create tape depot that is useful to put onto a CD or tape , create a bundle using a psf file &lt;BR /&gt;swpackage -x media_type=tape -s bundle.psf @ /destiation &lt;BR /&gt;this will create a single .depot file. &lt;BR /&gt;Hope this helps. &lt;BR /&gt;&lt;BR /&gt;regard&lt;BR /&gt;baba</description>
      <pubDate>Mon, 11 Nov 2002 11:49:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/patch-bundles/m-p/2842111#M91415</guid>
      <dc:creator>Punithan</dc:creator>
      <dc:date>2002-11-11T11:49:45Z</dc:date>
    </item>
    <item>
      <title>Re: patch bundles</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/patch-bundles/m-p/2842112#M91416</link>
      <description>Install Ignite then simply use;&lt;BR /&gt;&lt;BR /&gt;/opt/ignite/bin/make_bundles&lt;BR /&gt;&lt;BR /&gt;to create a bundle.</description>
      <pubDate>Mon, 11 Nov 2002 11:55:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/patch-bundles/m-p/2842112#M91416</guid>
      <dc:creator>Stefan Farrelly</dc:creator>
      <dc:date>2002-11-11T11:55:50Z</dc:date>
    </item>
    <item>
      <title>Re: patch bundles</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/patch-bundles/m-p/2842113#M91417</link>
      <description>Use the hp web site to create the patch bundle for you, (Select the patches, add them to the cart, put them into a tar format, and away you go) &lt;BR /&gt;&lt;BR /&gt;Or, &lt;BR /&gt;&lt;BR /&gt;Create a dir /tmp/bundle01&lt;BR /&gt;&lt;BR /&gt;use swcopy to select your 6 patches and copy them into the bundle - use /tmp/bundle01 as your target.</description>
      <pubDate>Mon, 11 Nov 2002 14:17:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/patch-bundles/m-p/2842113#M91417</guid>
      <dc:creator>Judy Traynor</dc:creator>
      <dc:date>2002-11-11T14:17:54Z</dc:date>
    </item>
    <item>
      <title>Re: patch bundles</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/patch-bundles/m-p/2842114#M91418</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;copy all the patches to any directory (say /tmp)&lt;BR /&gt;&lt;BR /&gt;#cd /tmp&lt;BR /&gt;# for i in PH*.txt&lt;BR /&gt;do&lt;BR /&gt;sh $i&lt;BR /&gt;done&lt;BR /&gt;&lt;BR /&gt;# mkdir patch_depot&lt;BR /&gt;#for i in PH*.depot&lt;BR /&gt;do&lt;BR /&gt;swcopy -s ${PWD}/$i \* @ /tmp/patch_depot&lt;BR /&gt;done&lt;BR /&gt;&lt;BR /&gt;#swinstall -s /tmp/patch_depot&lt;BR /&gt;&lt;BR /&gt;will install all the patches</description>
      <pubDate>Mon, 11 Nov 2002 14:24:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/patch-bundles/m-p/2842114#M91418</guid>
      <dc:creator>Ravi_8</dc:creator>
      <dc:date>2002-11-11T14:24:30Z</dc:date>
    </item>
  </channel>
</rss>

