<?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: Combining the package &amp;amp; a depot and install in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/combining-the-package-amp-a-depot-and-install/m-p/3351843#M192602</link>
    <description>I use this proceurte:&lt;BR /&gt;You can make script like below and swinstall many patches without restart and reboot server after last one.&lt;BR /&gt;&lt;BR /&gt;cp -p /var/adm/sw/defaults /var/adm/sw/defaults.ORI&lt;BR /&gt;echo "swagent.reboot_cmd=/bin/true" &amp;gt;&amp;gt; /var/adm/sw/defaults&lt;BR /&gt;swinstall -x autoreboot=true -s /dir/patch1.depot&lt;BR /&gt;swinstall -x autoreboot=true -s /dir/patch2.depot&lt;BR /&gt;cp -p /var/adm/sw/defaults.ORI /var/adm/sw/defaults&lt;BR /&gt;swinstall -x autoreboot=true -s /dir/patch3.depot&lt;BR /&gt;</description>
    <pubDate>Mon, 09 Aug 2004 10:19:23 GMT</pubDate>
    <dc:creator>Petr Simik_1</dc:creator>
    <dc:date>2004-08-09T10:19:23Z</dc:date>
    <item>
      <title>Combining the package &amp; a depot and install</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/combining-the-package-amp-a-depot-and-install/m-p/3351837#M192596</link>
      <description>Hello,&lt;BR /&gt;&lt;BR /&gt;I have downloaded few custom patches and created a bundle (make_bundles) and then a package using swpackage command.&lt;BR /&gt;&lt;BR /&gt;I would like to install the above package and the QPK1100_B.11.00.64.4.depot together.&lt;BR /&gt;&lt;BR /&gt;How can I install them together?&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Nikee</description>
      <pubDate>Sat, 07 Aug 2004 02:02:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/combining-the-package-amp-a-depot-and-install/m-p/3351837#M192596</guid>
      <dc:creator>Nikee Reddy</dc:creator>
      <dc:date>2004-08-07T02:02:32Z</dc:date>
    </item>
    <item>
      <title>Re: Combining the package &amp; a depot and install</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/combining-the-package-amp-a-depot-and-install/m-p/3351838#M192597</link>
      <description>Hi,&lt;BR /&gt;If i understood the question correctly then,&lt;BR /&gt;&lt;BR /&gt;Try using swcopy and then use swinstall.&lt;BR /&gt;swcopy you can copy all the required patches&lt;BR /&gt;at on destination and then selectively install them using swinstall.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Sat, 07 Aug 2004 02:11:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/combining-the-package-amp-a-depot-and-install/m-p/3351838#M192597</guid>
      <dc:creator>Shaikh Imran</dc:creator>
      <dc:date>2004-08-07T02:11:10Z</dc:date>
    </item>
    <item>
      <title>Re: Combining the package &amp; a depot and install</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/combining-the-package-amp-a-depot-and-install/m-p/3351839#M192598</link>
      <description>you can do it by combining or merging software selections and making as a target selection to swinstall.&lt;BR /&gt;&lt;BR /&gt; Man page says as,&lt;BR /&gt;&lt;BR /&gt;The swcopy command copies or merges software_selections from a&lt;BR /&gt;      software source to one or more software depot target_selections These&lt;BR /&gt;      depots can then be accessed as a software source by the swinstall&lt;BR /&gt;      command.&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Muthu</description>
      <pubDate>Sat, 07 Aug 2004 02:18:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/combining-the-package-amp-a-depot-and-install/m-p/3351839#M192598</guid>
      <dc:creator>Muthukumar_5</dc:creator>
      <dc:date>2004-08-07T02:18:36Z</dc:date>
    </item>
    <item>
      <title>Re: Combining the package &amp; a depot and install</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/combining-the-package-amp-a-depot-and-install/m-p/3351840#M192599</link>
      <description>Here is the procedure which I have followed:&lt;BR /&gt;&lt;BR /&gt;Uncompress all the downloaded patch files using sh command:&lt;BR /&gt;for i in PH*&lt;BR /&gt;do&lt;BR /&gt;sh $i &lt;BR /&gt;done&lt;BR /&gt;&lt;BR /&gt;mkdir /swdepot/patches./custom_aug_04&lt;BR /&gt;&lt;BR /&gt;Copy the files using swcopy from the tmp directory.&lt;BR /&gt;&lt;BR /&gt;for i in PH*.depot&lt;BR /&gt;do&lt;BR /&gt;swcopy -v -x enforce_dependencies=false -s /swdepot/patches/tmp/$i  \* @  /swdepot/â ¦./custom_aug_04&lt;BR /&gt;done&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Bundle â   Product Specific File&lt;BR /&gt;make_bundles -B -n CSWPATCHES -t "Customized Patch Bundle, August 2004" -o titan_0804.psf -r C.1.0 /swdepot/patches/custom_aug_04&lt;BR /&gt;&lt;BR /&gt;Package&lt;BR /&gt;swpackage -s titan_0804.psf -xlayout_version=1.0 -xreinstall_files=true -d /swdepot/patches/custom_aug_04 &lt;BR /&gt;&lt;BR /&gt;This is how I have create a package.  &lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;</description>
      <pubDate>Sat, 07 Aug 2004 02:54:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/combining-the-package-amp-a-depot-and-install/m-p/3351840#M192599</guid>
      <dc:creator>Nikee Reddy</dc:creator>
      <dc:date>2004-08-07T02:54:27Z</dc:date>
    </item>
    <item>
      <title>Re: Combining the package &amp; a depot and install</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/combining-the-package-amp-a-depot-and-install/m-p/3351841#M192600</link>
      <description>Nikee,&lt;BR /&gt;I assume your depot is /swdepot/patches/custom_aug_04. Secondly Created a bundle CSWPATCHES in /swdepot/patches/custom_aug_04.&lt;BR /&gt;Now you will be able to see this Bundle thr' swinstall menu.&lt;BR /&gt;Now copy QPK1100_B.11.00.64.4.depot file to /swdepot/patches/custom_aug_04 using swcopy command that you know already.&lt;BR /&gt;&lt;BR /&gt;Now you have both your customized bundle as well as the QPK depot file in your depot.&lt;BR /&gt;&lt;BR /&gt;Swintall will now see both of them in the install window, go ahead to select them and install.&lt;BR /&gt;Hope this is what you are looking for.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Sat, 07 Aug 2004 06:04:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/combining-the-package-amp-a-depot-and-install/m-p/3351841#M192600</guid>
      <dc:creator>Bharat Katkar</dc:creator>
      <dc:date>2004-08-07T06:04:27Z</dc:date>
    </item>
    <item>
      <title>Re: Combining the package &amp; a depot and install</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/combining-the-package-amp-a-depot-and-install/m-p/3351842#M192601</link>
      <description>After making bundle, there is no need to use swpackage. &lt;BR /&gt;swpackage is used baciscally to create a depot file.&lt;BR /&gt;&lt;BR /&gt;Regards,</description>
      <pubDate>Sat, 07 Aug 2004 07:12:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/combining-the-package-amp-a-depot-and-install/m-p/3351842#M192601</guid>
      <dc:creator>Bharat Katkar</dc:creator>
      <dc:date>2004-08-07T07:12:21Z</dc:date>
    </item>
    <item>
      <title>Re: Combining the package &amp; a depot and install</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/combining-the-package-amp-a-depot-and-install/m-p/3351843#M192602</link>
      <description>I use this proceurte:&lt;BR /&gt;You can make script like below and swinstall many patches without restart and reboot server after last one.&lt;BR /&gt;&lt;BR /&gt;cp -p /var/adm/sw/defaults /var/adm/sw/defaults.ORI&lt;BR /&gt;echo "swagent.reboot_cmd=/bin/true" &amp;gt;&amp;gt; /var/adm/sw/defaults&lt;BR /&gt;swinstall -x autoreboot=true -s /dir/patch1.depot&lt;BR /&gt;swinstall -x autoreboot=true -s /dir/patch2.depot&lt;BR /&gt;cp -p /var/adm/sw/defaults.ORI /var/adm/sw/defaults&lt;BR /&gt;swinstall -x autoreboot=true -s /dir/patch3.depot&lt;BR /&gt;</description>
      <pubDate>Mon, 09 Aug 2004 10:19:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/combining-the-package-amp-a-depot-and-install/m-p/3351843#M192602</guid>
      <dc:creator>Petr Simik_1</dc:creator>
      <dc:date>2004-08-09T10:19:23Z</dc:date>
    </item>
  </channel>
</rss>

