HPE GreenLake Administration
- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Patches and Dependencies
Operating System - HP-UX
1833040
Members
2903
Online
110049
Solutions
Forums
Categories
Company
Local Language
back
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
back
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Blogs
Information
Community
Resources
Community Language
Language
Forums
Blogs
Go to solution
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-26-2001 01:36 AM
09-26-2001 01:36 AM
Can anyone advice me?
Am about to install a Patch that require PHCO_13411 which is superseded by PHCO_23651, depending on PHKL_17869.
PHKL_17869 is superseded by PHKL_18543 which is depending on PHCO_13411.
Where do I start? How to deal with these type of problems? Is the date of posting of importance here?
Am about to install a Patch that require PHCO_13411 which is superseded by PHCO_23651, depending on PHKL_17869.
PHKL_17869 is superseded by PHKL_18543 which is depending on PHCO_13411.
Where do I start? How to deal with these type of problems? Is the date of posting of importance here?
Solved! Go to Solution.
3 REPLIES 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-26-2001 01:42 AM
09-26-2001 01:42 AM
Re: Patches and Dependencies
You should put on both PHCO_23651 and PHKL_18543 at the same time. You can do this by creating a patch depot:
download both patches
unarchive the patches in say /tmp:
sh PHCO_23651
sh
copy the patches to a new depot:
swcopy -s /tmp/PHCO_23651.depot \* @ /tmp/patch.depot
swcopy -s /tmp/PHKL_18543.depot \* @ /tmp/patch.depot
install the patches from the depot
swinstall -s /tmp/patch.depot
Hope this helps.
-Santosh
download both patches
unarchive the patches in say /tmp:
sh PHCO_23651
sh
copy the patches to a new depot:
swcopy -s /tmp/PHCO_23651.depot \* @ /tmp/patch.depot
swcopy -s /tmp/PHKL_18543.depot \* @ /tmp/patch.depot
install the patches from the depot
swinstall -s /tmp/patch.depot
Hope this helps.
-Santosh
Life is what's happening while you're busy making other plans
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-26-2001 04:03 AM
09-26-2001 04:03 AM
Re: Patches and Dependencies
If youre unsure about which patch needs what as a dependency and what superceedes what, copy all the possible patches into the same depot, and when you install the patch from there it will automatically pull in any/all dependencies and take into account patches which are superceeded. If any are missing or the dependencies/supercession wrong, it will tell you, and you can correct it then retry.
As long as you use the patch_match_target option on swinstall it will work it out for you and save you the worry!
Im from Palmerston North, New Zealand, but somehow ended up in London...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-26-2001 06:15 AM
09-26-2001 06:15 AM
Solution
Hi,
I would highly recommend reading the white paper "Patch Management Guide for HP-UX 11.x"
http://docs.hp.com/hpux/pdf/5967-3578.pdf
As far as patch dependencies are concerned, in your case
PHCO_13411 --> PHCO_23651
PHCO_23651 <=> PHKL_17869
PHKL_17869 --> PHKL_18543
PHKL_18543 <=> PHCO_13411 PHKL_17038 PHKL_19169
PHKL_17038 --> PHKL_25188
PHKL_19169 --> PHKL_24027
--> indicates superseded by
<=> dependencies
Now in this case PHKL_18543 is a Mega Patch on which lot of newer patches have a dependency on, so you might need it anyway.
To suffice the dependency needs, you want to download all the patches (PHCO_23651, PHKL_18543, PHKL_25188 PHKL_24027) into a temp directory.
for i in PH*
do
sh $i
done
(This will unshar the patch files and create a patch.depot and patch.text files)
Now to minimize the number of reboots you want to combine them into a single depot.
for i in PH*.depot
do
swcopy -s $i \* @ /path/mypatch.depot
done
Now to install the patches, just do
swinstall -s /path/mypatch.depot
This way you can install all the patches in one shot and minimize the number of reboots to just one.
Again i would highly recommend reading the guide for future needs.
-HTH
Ramesh
I would highly recommend reading the white paper "Patch Management Guide for HP-UX 11.x"
http://docs.hp.com/hpux/pdf/5967-3578.pdf
As far as patch dependencies are concerned, in your case
PHCO_13411 --> PHCO_23651
PHCO_23651 <=> PHKL_17869
PHKL_17869 --> PHKL_18543
PHKL_18543 <=> PHCO_13411 PHKL_17038 PHKL_19169
PHKL_17038 --> PHKL_25188
PHKL_19169 --> PHKL_24027
--> indicates superseded by
<=> dependencies
Now in this case PHKL_18543 is a Mega Patch on which lot of newer patches have a dependency on, so you might need it anyway.
To suffice the dependency needs, you want to download all the patches (PHCO_23651, PHKL_18543, PHKL_25188 PHKL_24027) into a temp directory.
for i in PH*
do
sh $i
done
(This will unshar the patch files and create a patch.depot and patch.text files)
Now to minimize the number of reboots you want to combine them into a single depot.
for i in PH*.depot
do
swcopy -s $i \* @ /path/mypatch.depot
done
Now to install the patches, just do
swinstall -s /path/mypatch.depot
This way you can install all the patches in one shot and minimize the number of reboots to just one.
Again i would highly recommend reading the guide for future needs.
-HTH
Ramesh
They think they know but don't. At least I know I don't know - Socrates
The opinions expressed above are the personal opinions of the authors, not of Hewlett Packard Enterprise. By using this site, you accept the Terms of Use and Rules of Participation.
Company
Events and news
Customer resources
© Copyright 2025 Hewlett Packard Enterprise Development LP