<?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 patch bundle in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-patch-bundle/m-p/2744352#M68563</link>
    <description>Hi James:&lt;BR /&gt;&lt;BR /&gt;Use the '-x reinstall=true' argument in the 'swinstall' command, although I would expect it to work for 'swcopy' too, under situations where you were recopying.&lt;BR /&gt;  &lt;BR /&gt;swcopy -x reinstall=true -s ${PWD}/$i \* @ /tmp/mydepot &lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
    <pubDate>Thu, 13 Jun 2002 23:19:54 GMT</pubDate>
    <dc:creator>James R. Ferguson</dc:creator>
    <dc:date>2002-06-13T23:19:54Z</dc:date>
    <item>
      <title>creating patch bundle</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-patch-bundle/m-p/2744340#M68551</link>
      <description>I downloaded all of the kernel patches that is in the June 2000 bundle. I download from itrc. I sh the files, and removed the PHKL_xxxx.text and PHKL_xxxx files. The only thing left is to create a depot/bundle and install all at once. I see various ways to do it, however, all I want to do is create a depot and install all of these kernel patches at once. How do I create the depot? Do I need to swreg? Thanks, james</description>
      <pubDate>Thu, 13 Jun 2002 18:39:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/creating-patch-bundle/m-p/2744340#M68551</guid>
      <dc:creator>James Ellis_1</dc:creator>
      <dc:date>2002-06-13T18:39:21Z</dc:date>
    </item>
    <item>
      <title>Re: creating patch bundle</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-patch-bundle/m-p/2744341#M68552</link>
      <description>This document may help you (TKB #KNC063099001):&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://support2.itrc.hp.com/service/cki/docDisplay.do?docLocale=en_US&amp;amp;docId=200000041842407" target="_blank"&gt;http://support2.itrc.hp.com/service/cki/docDisplay.do?docLocale=en_US&amp;amp;docId=200000041842407&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 13 Jun 2002 18:43:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/creating-patch-bundle/m-p/2744341#M68552</guid>
      <dc:creator>Helen French</dc:creator>
      <dc:date>2002-06-13T18:43:38Z</dc:date>
    </item>
    <item>
      <title>Re: creating patch bundle</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-patch-bundle/m-p/2744342#M68553</link>
      <description>Hi James:&lt;BR /&gt;&lt;BR /&gt;'swcopy' will register the depot automatically.  There is no need to do 'swreg' for local purposes.&lt;BR /&gt;&lt;BR /&gt;Download both patches and any other dependencies. Then create a depot with 'swcopy'. This will also avoid multiple reboots: &lt;BR /&gt;&lt;BR /&gt;To collect a series of patches into a depot the can be installed with a single reboot, simply download your patches into the /tmp directory; "un-shar" them and do: &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;&lt;BR /&gt;There is no need to register the depot with 'swreg'. This is done automatically by 'swcopy'. The 'swlist' allows you to preview the depot's contents. Remember, of course, that you can also run 'swinstall' in preview mode to take it through its analysis phase, too. &lt;BR /&gt;&lt;BR /&gt;As desired, you can add the option '-x enforce_dependencies=false' to the 'swcopy' command. Do this in cases where you *know* you have the necessary dependencies satisfied on your target. &lt;BR /&gt;&lt;BR /&gt;Don't worry about the order of the patches in your depot. 'swinstall' will analyze and apply what is necessary and in the correct order. &lt;BR /&gt;&lt;BR /&gt;Regards! &lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Thu, 13 Jun 2002 18:46:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/creating-patch-bundle/m-p/2744342#M68553</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2002-06-13T18:46:48Z</dc:date>
    </item>
    <item>
      <title>Re: creating patch bundle</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-patch-bundle/m-p/2744343#M68554</link>
      <description>Since you've unshar them, the next few steps would be like so .. (do this at the dir where the PH*.depot files are at)&lt;BR /&gt;&lt;BR /&gt;# mkdir /tmp/mydepot&lt;BR /&gt;# for i in PH*.depot&lt;BR /&gt;&amp;gt;do&lt;BR /&gt;&amp;gt;swcopy -s ${PWD}/$i  \* @ /tmp/mydepot&lt;BR /&gt;&amp;gt;done&lt;BR /&gt;&lt;BR /&gt;# swlist -d @ /tmp/mydepot&lt;BR /&gt;==&amp;gt; Verify the content ..&lt;BR /&gt;&lt;BR /&gt;# swinstall -s /tmp/mydepot&lt;BR /&gt;==&amp;gt; Run the swinstall ..&lt;BR /&gt;</description>
      <pubDate>Thu, 13 Jun 2002 18:51:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/creating-patch-bundle/m-p/2744343#M68554</guid>
      <dc:creator>S.K. Chan</dc:creator>
      <dc:date>2002-06-13T18:51:34Z</dc:date>
    </item>
    <item>
      <title>Re: creating patch bundle</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-patch-bundle/m-p/2744344#M68555</link>
      <description>One other thing...I need to run the swinstall with the option '-x reinstall=true' because these patches were already installed via the patch bundle, but got corrupted with PHKL_18543. Now that PHKL_18543 is fixed, I need to reinstall these patches. So this option will work with the depot? thanks.</description>
      <pubDate>Thu, 13 Jun 2002 18:56:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/creating-patch-bundle/m-p/2744344#M68555</guid>
      <dc:creator>James Ellis_1</dc:creator>
      <dc:date>2002-06-13T18:56:37Z</dc:date>
    </item>
    <item>
      <title>Re: creating patch bundle</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-patch-bundle/m-p/2744345#M68556</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Try this link to create a depot,&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://support2.itrc.hp.com/service/cki/docDisplay.do?docLocale=en_US&amp;amp;docId=200000045145898" target="_blank"&gt;http://support2.itrc.hp.com/service/cki/docDisplay.do?docLocale=en_US&amp;amp;docId=200000045145898&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;When doing swinstall, go to the options and select reinstall options over there to reinstall the patches again.&lt;BR /&gt;&lt;BR /&gt;Hope this helps.&lt;BR /&gt;&lt;BR /&gt;Regds&lt;BR /&gt;</description>
      <pubDate>Thu, 13 Jun 2002 19:09:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/creating-patch-bundle/m-p/2744345#M68556</guid>
      <dc:creator>Sanjay_6</dc:creator>
      <dc:date>2002-06-13T19:09:18Z</dc:date>
    </item>
    <item>
      <title>Re: creating patch bundle</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-patch-bundle/m-p/2744346#M68557</link>
      <description>In the "swcopy" statement when you build your depot, put in the option ..&lt;BR /&gt;&lt;BR /&gt;swcopy -x reinstall=true -s ${PWD}/$i \* @ /tmp/mydepot&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 13 Jun 2002 19:17:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/creating-patch-bundle/m-p/2744346#M68557</guid>
      <dc:creator>S.K. Chan</dc:creator>
      <dc:date>2002-06-13T19:17:49Z</dc:date>
    </item>
    <item>
      <title>Re: creating patch bundle</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-patch-bundle/m-p/2744347#M68558</link>
      <description>Hi James,&lt;BR /&gt;&lt;BR /&gt;  Have a look at this,&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0xa6e99276484dd611abdb0090277a778c,00.html" target="_blank"&gt;http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0xa6e99276484dd611abdb0090277a778c,00.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt; You dont need to register the depot by using swreg. swcopy will do that automatically for you.</description>
      <pubDate>Thu, 13 Jun 2002 19:42:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/creating-patch-bundle/m-p/2744347#M68558</guid>
      <dc:creator>Arockia Jegan</dc:creator>
      <dc:date>2002-06-13T19:42:39Z</dc:date>
    </item>
    <item>
      <title>Re: creating patch bundle</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-patch-bundle/m-p/2744348#M68559</link>
      <description>S.K,&lt;BR /&gt;&lt;BR /&gt;Ok, I put the '-x reinstall=true' statement in the swcopy line...but do I need to use the '-x reinstall-true' in the swinstall statement? This is the swinstall statement in the last part of your post. I am going to try this at 6pm when all users are off the db. thanks.</description>
      <pubDate>Thu, 13 Jun 2002 19:47:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/creating-patch-bundle/m-p/2744348#M68559</guid>
      <dc:creator>James Ellis_1</dc:creator>
      <dc:date>2002-06-13T19:47:30Z</dc:date>
    </item>
    <item>
      <title>Re: creating patch bundle</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-patch-bundle/m-p/2744349#M68560</link>
      <description>Hi James:&lt;BR /&gt;&lt;BR /&gt;Yes, place the '-x reinstall=true' argument in the 'swinstall' command.  'swinstall's default, unless specified at run time or established in your standard option files (see man 'swinstall') is false for this option.&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Thu, 13 Jun 2002 20:23:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/creating-patch-bundle/m-p/2744349#M68560</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2002-06-13T20:23:24Z</dc:date>
    </item>
    <item>
      <title>Re: creating patch bundle</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-patch-bundle/m-p/2744350#M68561</link>
      <description>So the option '-x reinstall=true' goes in both swcopy statementy as well as the swinstall statement? I thought I read somewhere that the option '-x reinstall=true' should only go in the swinstall statement? thanks...</description>
      <pubDate>Thu, 13 Jun 2002 20:26:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/creating-patch-bundle/m-p/2744350#M68561</guid>
      <dc:creator>James Ellis_1</dc:creator>
      <dc:date>2002-06-13T20:26:49Z</dc:date>
    </item>
    <item>
      <title>Re: creating patch bundle</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-patch-bundle/m-p/2744351#M68562</link>
      <description>I am having problems doing what everyone recommends. I figured maybe I did the commands wrong. Maybe it is because I used the '-x reinstall=true' option within the swcopy command? Maybe when I typed swcopy -x reinstall=true -s ${PWD}/$i\* @ /tmp/mydepot&lt;BR /&gt;&lt;BR /&gt;I did not leave a space between  the i AND \? Is that the problem?</description>
      <pubDate>Thu, 13 Jun 2002 23:04:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/creating-patch-bundle/m-p/2744351#M68562</guid>
      <dc:creator>James Ellis_1</dc:creator>
      <dc:date>2002-06-13T23:04:37Z</dc:date>
    </item>
    <item>
      <title>Re: creating patch bundle</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-patch-bundle/m-p/2744352#M68563</link>
      <description>Hi James:&lt;BR /&gt;&lt;BR /&gt;Use the '-x reinstall=true' argument in the 'swinstall' command, although I would expect it to work for 'swcopy' too, under situations where you were recopying.&lt;BR /&gt;  &lt;BR /&gt;swcopy -x reinstall=true -s ${PWD}/$i \* @ /tmp/mydepot &lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Thu, 13 Jun 2002 23:19:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/creating-patch-bundle/m-p/2744352#M68563</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2002-06-13T23:19:54Z</dc:date>
    </item>
    <item>
      <title>Re: creating patch bundle</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-patch-bundle/m-p/2744353#M68564</link>
      <description>I got it working, but when it does the analysis phase it comes back and say some filesets are missing from PHKL_18543, and I recently fixed PHKL_18543. HP asked that I install a command patch to fix the problem with PHKL_18543 and it came out as working when I ran the check_patches utility program. I am running it now to see why its not working...thanks for your help...I'll let you know after the check_patches finish run  ~james</description>
      <pubDate>Thu, 13 Jun 2002 23:53:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/creating-patch-bundle/m-p/2744353#M68564</guid>
      <dc:creator>James Ellis_1</dc:creator>
      <dc:date>2002-06-13T23:53:06Z</dc:date>
    </item>
    <item>
      <title>Re: creating patch bundle</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-patch-bundle/m-p/2744354#M68565</link>
      <description>I get this error message: "You do not have the required permission to perform this SD operation. Pls. check to see that you have the required permissions using the swacl command or see your system admin.&lt;BR /&gt;&lt;BR /&gt;Jim</description>
      <pubDate>Fri, 14 Jun 2002 00:16:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/creating-patch-bundle/m-p/2744354#M68565</guid>
      <dc:creator>James Ellis_1</dc:creator>
      <dc:date>2002-06-14T00:16:07Z</dc:date>
    </item>
  </channel>
</rss>

