- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Patch Question
Categories
Company
Local Language
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
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
Community
Resources
Forums
Blogs
- 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
01-02-2003 10:58 AM
01-02-2003 10:58 AM
I'm trying to load some patches, but I'm a bit confused. Some of the patches I need have been superseded.
One of the patches I need is PHKL_25729 which has a patch dependency on PHKL_25728.
I also need PHKL_25840, which was superseded by PHKL_27092, which was superseded by PHKL_27317. PHKL_27317 also supersedes PHKL_25728.
My question is: do I need to install PHKL_25728? PHKL_25729 does not mention a dependency on PHKL_27317.
One more question. If I have a patch that is superseded by another patch that I need to install, do I need to remove the superseded patch?
Tom
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-02-2003 11:15 AM
01-02-2003 11:15 AM
Re: Patch Question
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-02-2003 11:20 AM
01-02-2003 11:20 AM
SolutionThe easiest way to avoid confusion with patch dependencies is to use the patch database tool on the ITRC. Simply enter your system type and then the patch(es) that you require into the text box. Three patch options will be offered to you based on how that patch is rated (how long it has been available). Check the patches that you'd like and hit the blue button at the bottom of the page. A list of patches with their dependencies will be listed. You can choose to download all of the patches as a zip, gzip or tar bundle.
Hope this helps.
Eric
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-02-2003 11:26 AM
01-02-2003 11:26 AM
Re: Patch Question
There is no need to remove superseded patches before installing a more recent one. You can (and should) use 'cleanup -c [1|2]' to committ and remove before a general patch application, thereby regaining space in 'var/' and providing a "baseline" for new patches.
That said, the easist way to deal with a patch and its dependencies is to select the patch and *all* its dependencies from the ITRC patch database.
The ITRC Patch database makes this easy. Simply select the patch(es) you want, and add them to the "cart". The dependencies will be automatically selected and included in the "shopping list". You may elect to add more recent versions of the depenendent patches too. During installation, the most recent will supercede the less recent. When you are done collectig the patches, download them as a bundle. A 'gzip' file is ideal.
Once on your server, uncompress the 'gzip' file in the /tmp directory:
# gzip -d filename
Next extract the 'tar' file:
# tar xvf filename
This will yield a 'README" file with more instructions and a file named 'create_depot_hp-ux_VV' where VV is the OS version. By executing the 'create_depot_hp-ux_VV' file, the selected patches will be un-shared and copied into a software depot (via 'swcopy'). At that point the depot is ready for use by 'swinstall'. Since the patches are collected into a bundle for installation, only one reboot is necessary regardless of the number of patches requiring this action.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-02-2003 11:44 AM
01-02-2003 11:44 AM
Re: Patch Question
Thanks for the replies. I just went to the patch DB and it should make applying patches much easier.
Here's the URL for the patch database home:
www1.itrc.hp.com/service/patch/mainPage.do
Tom
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-02-2003 11:51 AM
01-02-2003 11:51 AM
Re: Patch Question
I checked your patches, you need to just download the following patches:
PHKL_25729 and PHKL_27092. (This will take care of PHKL_25729 and also PHKL_25840).
As these are kernel patches, these will need a reboot. (If these are bundled together, these will need only one reboot)
When you install the patches with the swinstall gui, swinstall normally checks for all dependencies and will complain if you need more patches. (This is an additional way of checking if you have got all the dependencies or not)
You should not remove any "applied/active" patches from your system before installing these patches. The old patches will get automatically "superceded" when the new ones are installed, so you dont need to worry about them. You may remove the "superceded" patches subsequently only if you need to free up space under /var/adm/save. (Pls use the "cleanup" command for this)
As with any swinstall, pls make a recovery tape before you commence this work. Good luck !
-Krishnan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-02-2003 01:36 PM
01-02-2003 01:36 PM
Re: Patch Question
It comes with a create depot script.
You just run the script, -d depotname and you have a depot.
Then you swinstall -x autoreboot=true -x reinstall=false -s /fullpath of depot \* and you get the job done with one boot.
Steve
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-03-2003 03:52 AM
01-03-2003 03:52 AM
Re: Patch Question
Tom