<?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 Installation in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/patch-installation/m-p/2547414#M875419</link>
    <description>Hi,&lt;BR /&gt;create the bundle as described by vincenzo and install in just one step and reboot.&lt;BR /&gt;make a copy of /stand/vmunix  before installing the patches.</description>
    <pubDate>Mon, 02 Jul 2001 10:38:29 GMT</pubDate>
    <dc:creator>Ravi_8</dc:creator>
    <dc:date>2001-07-02T10:38:29Z</dc:date>
    <item>
      <title>Patch Installation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/patch-installation/m-p/2547412#M875417</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I have to install 9 patches in one system, HPUX 11.00, where each patch needs reboot.&lt;BR /&gt;Is there any way to install all the patches in one attempt and with one reboot?&lt;BR /&gt;&lt;BR /&gt;Can some one suggest with procedure to do?&lt;BR /&gt;&lt;BR /&gt;Thanks in Advance,&lt;BR /&gt;Selva...&lt;BR /&gt;</description>
      <pubDate>Mon, 02 Jul 2001 10:14:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/patch-installation/m-p/2547412#M875417</guid>
      <dc:creator>vselvaraj</dc:creator>
      <dc:date>2001-07-02T10:14:46Z</dc:date>
    </item>
    <item>
      <title>Re: Patch Installation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/patch-installation/m-p/2547413#M875418</link>
      <description># cd /tmp &lt;BR /&gt;# for X in PH* &lt;BR /&gt;# do &lt;BR /&gt;# sh $X &lt;BR /&gt;# done &lt;BR /&gt;# mkdir /tmp/patches &lt;BR /&gt;# for X in /tmp/PH*.depot &lt;BR /&gt;# do &lt;BR /&gt;# swcopy -s /tmp/${X} \* @ /tmp/patches &lt;BR /&gt;# done &lt;BR /&gt;</description>
      <pubDate>Mon, 02 Jul 2001 10:19:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/patch-installation/m-p/2547413#M875418</guid>
      <dc:creator>Vincenzo Restuccia</dc:creator>
      <dc:date>2001-07-02T10:19:15Z</dc:date>
    </item>
    <item>
      <title>Re: Patch Installation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/patch-installation/m-p/2547414#M875419</link>
      <description>Hi,&lt;BR /&gt;create the bundle as described by vincenzo and install in just one step and reboot.&lt;BR /&gt;make a copy of /stand/vmunix  before installing the patches.</description>
      <pubDate>Mon, 02 Jul 2001 10:38:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/patch-installation/m-p/2547414#M875419</guid>
      <dc:creator>Ravi_8</dc:creator>
      <dc:date>2001-07-02T10:38:29Z</dc:date>
    </item>
    <item>
      <title>Re: Patch Installation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/patch-installation/m-p/2547415#M875420</link>
      <description>If you have several individual patches which you need to install it is useful to package them all together into one patch depot. This way you do not need to run update or swinstall multiple times and if patches require a &lt;BR /&gt;reboot the system will reboot only once.&lt;BR /&gt;&lt;BR /&gt;------------------&lt;BR /&gt;&lt;BR /&gt;Example of creating a SD-UX depot containing 3 different patches.&lt;BR /&gt;&lt;BR /&gt;1. Retrieve the patches for instance from a patch server or web site :&lt;BR /&gt;&lt;BR /&gt;# mkdir /tmp/patches&lt;BR /&gt;# cd /tmp/patches&lt;BR /&gt;&lt;BR /&gt;Copy patches via ftp, rcp ... into this directory.&lt;BR /&gt;&lt;BR /&gt;# ls&lt;BR /&gt;PHCO_1234  PHCO_1111  PHCO_2222&lt;BR /&gt;&lt;BR /&gt;2. Unpack all patches :&lt;BR /&gt;&lt;BR /&gt;# sh PHCO_1234&lt;BR /&gt;# sh PHCO_1111&lt;BR /&gt;# sh PHCO_2222&lt;BR /&gt;&lt;BR /&gt;3. Create a patch depot :&lt;BR /&gt;&lt;BR /&gt;# mkdir /tmp/patch_depot&lt;BR /&gt;# swcopy -v -s /tmp/patches/PHCO_1234.depot PHCO_1234 @ &lt;BR /&gt;/tmp/patch_depot #&lt;BR /&gt;swcopy -v -s /tmp/patches/PHCO_1111.depot -&amp;gt; PHCO_1111 @ /tmp/patch_depot #&lt;BR /&gt;swcopy -v -s /tmp/patches/PHCO_2222.depot PHCO_2222 @ /tmp/patch_depot&lt;BR /&gt;&lt;BR /&gt;4. Register the depot (optional)&lt;BR /&gt;&lt;BR /&gt;# swreg -l depot /tmp/patch_depot&lt;BR /&gt;&lt;BR /&gt;5. Now call swinstall and specify /tmp/patch_depot as your source.&lt;BR /&gt;&lt;BR /&gt;If you need to copy the depot to a tape use the following command :&lt;BR /&gt;# swpackage -s /tmp/patch_depot -x target_type=tape -d /dev/rmt/0m "*"&lt;BR /&gt;&lt;BR /&gt;6. Remove patch source.&lt;BR /&gt;&lt;BR /&gt;# rm -rf /tmp/patches&lt;BR /&gt;</description>
      <pubDate>Mon, 02 Jul 2001 12:51:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/patch-installation/m-p/2547415#M875420</guid>
      <dc:creator>John Booth_1</dc:creator>
      <dc:date>2001-07-02T12:51:22Z</dc:date>
    </item>
    <item>
      <title>Re: Patch Installation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/patch-installation/m-p/2547416#M875421</link>
      <description>See &lt;A href="http://docs.hp.com/cgi-bin/fsearch/framedisplay?top=/hpux/onlinedocs/B2355-90154/B2355-90154_top.html&amp;amp;con=/hpux/onlinedocs/B2355-90154/00/00/37-con.html&amp;amp;toc=/hpux/onlinedocs/B2355-90154/00/00/37-toc.html&amp;amp;searchterms=Patch&amp;amp;queryid=20010702-065817" target="_blank"&gt;http://docs.hp.com/cgi-bin/fsearch/framedisplay?top=/hpux/onlinedocs/B2355-90154/B2355-90154_top.html&amp;amp;con=/hpux/onlinedocs/B2355-90154/00/00/37-con.html&amp;amp;toc=/hpux/onlinedocs/B2355-90154/00/00/37-toc.html&amp;amp;searchterms=Patch&amp;amp;queryid=20010702-065817&lt;/A&gt;</description>
      <pubDate>Mon, 02 Jul 2001 12:58:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/patch-installation/m-p/2547416#M875421</guid>
      <dc:creator>Vincenzo Restuccia</dc:creator>
      <dc:date>2001-07-02T12:58:32Z</dc:date>
    </item>
    <item>
      <title>Re: Patch Installation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/patch-installation/m-p/2547417#M875422</link>
      <description>Here is the process to create a patch bundle...&lt;BR /&gt;&lt;BR /&gt; The following is a useful process for applying more than one patch while only requiring a single reboot after the final patch installation:&lt;BR /&gt;&lt;BR /&gt;         1) Get the individual depots over into /tmp.&lt;BR /&gt;&lt;BR /&gt;         2) Make a new directory to contain the set of patches:&lt;BR /&gt;             mkdir /tmp/DEPOT # For example&lt;BR /&gt;&lt;BR /&gt;         3) For each patch "PHNE_11371":&lt;BR /&gt;&lt;BR /&gt;            swcopy -s /tmp/PHNE_11371.depot  \*  @  /tmp/DEPOT&lt;BR /&gt;&lt;BR /&gt;  NOTE: May need to disable filesystem mounting check, use:&lt;BR /&gt;                    -x mount_all_filesystems=false&lt;BR /&gt;&lt;BR /&gt;         4) select the installation command...&lt;BR /&gt;&lt;BR /&gt;  for 10.x use:&lt;BR /&gt;  swinstall -x match_target=true -x autoreboot=true -s /tmp/DEPOT&lt;BR /&gt;  &lt;BR /&gt;  for 11.x use:&lt;BR /&gt;  swinstall -x patch_match_target=true -x autoreboot=true -s /tmp/DEPOT&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;To verify installation:&lt;BR /&gt;  swlist -l fileset -a state | grep -i install&lt;BR /&gt;&lt;BR /&gt;  If any patches show up as "installed" instead of configured, run the following command:&lt;BR /&gt;    swconfig \*</description>
      <pubDate>Mon, 02 Jul 2001 17:21:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/patch-installation/m-p/2547417#M875422</guid>
      <dc:creator>nnf97</dc:creator>
      <dc:date>2001-07-02T17:21:14Z</dc:date>
    </item>
  </channel>
</rss>

