- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- How to install patch
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
07-11-2008 11:07 AM
07-11-2008 11:07 AM
I downloaded a patch bundle in gzip format. Now I have gunzipped and its in .tar format. How do i proceed?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2008 11:12 AM
07-11-2008 11:12 AM
Re: How to install patch
and then you may see the create depot script. run it. it will create a depot folder.then run swinstall
#swinstall -s
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2008 11:16 AM
07-11-2008 11:16 AM
Re: How to install patch
At this point you should have a tar ball that contains a script called something like '/tmp/create_depot_hp-ux_11'. Do:
# tar -xvf /tmp/hpux*.tar
...untar the tar ball
# /tmp/create_depot_hp-ux_11
...run this to create a patch depot
# swinstall -s /tmp/depot -x autoreboot=true -x patch_match_target=true
...will reboot your server if required
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2008 12:20 PM
07-11-2008 12:20 PM
Re: How to install patch
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2008 12:30 PM
07-11-2008 12:30 PM
Re: How to install patch
Add the '-x enforce_dependencies=true':
# swinstall -s /tmp/depot -x autoreboot=true -x patch_match_target=true -x enforce_dependencies=true
This should be the default setting and thus I didn't have you specify it. Examine your '/var/adm/sw/defaults' file. It would appear that is specifies 'enforce_dependencies=false'.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2008 12:53 PM
07-11-2008 12:53 PM
SolutionGo to https://www.hp.com/go/swa and install the most recent version of Software Assistant. Then run the following:
1. swa report -a CHAIN=PHCO_36744
2. swa get -t /var/tmp/mydepot
3. Review the report found in /var/tmp/mydepot/readBeforeInstall.txt
4. Install
swinstall -s /var/tmp/mydepot -x autoreboot=true -x patch_match_target=true
5. Remove old depot
swreg -u -l depot /var/tmp/mydepot
rm -rf /var/tmp/mydepot
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2008 01:07 PM
07-11-2008 01:07 PM
Re: How to install patch
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2008 01:19 PM
07-11-2008 01:19 PM
Re: How to install patch
HP *generally* does not create dependencies without cause. Unless you want to go nuts working out load orders (and recursive deps are known) you want to use SWA or the ITRC (http://www.itrc.hp.com) Patch Database to manage dependencies and help you build a depot.
If you choose to ignore them the bad things will depend on what you "broke". It can range from failure to rebuild a kernel to failure to boot.
The SWA link is working for me just now. It is available from Software Depot, just go to hp.com and search if needed.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2008 02:20 PM
07-11-2008 02:20 PM
Re: How to install patch
It is often appropriate to use '-x enforce_dependencies=false' when copying patches into a depot with 'swcopy'.
At your own risk, use this during a 'awinstall' session. During software installation, you want 'enforce_dependencies=true' (the standard default).
Setting the option to *false* is done during 'swcopy' operations to *defer* dependency checking until later (during an actual 'swinstall'). That is, you can build a smaller software depot if you know that dependencies will be checked and resolved at installation. During a 'swinstall' session, the union of the depot's contents and you server IPD (installed product database) is used for depenedency checking unless you specifically (and unwisely) say otherwise by setting 'enforce_dependencies=false'.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2008 03:36 PM
07-11-2008 03:36 PM
Re: How to install patch
What errors? There was just the output from the swcopy and swverify then the depot was built.
>JRF: Add the '-x enforce_dependencies=true'
But you want false for swcopy.
>JRF: It is often appropriate to use '-x enforce_dependencies=false' when copying patches into a depot with 'swcopy'.
That's exactly what the log implied.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2008 05:32 PM
07-11-2008 05:32 PM
Re: How to install patch
Thanks very much Friends.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-12-2008 04:25 AM
07-12-2008 04:25 AM
Re: How to install patch
> Dennis: That's exactly what the log implied.
Yes, and for whatever reason I misread the header in the log thinking that the session was an install and not a copy. Missing that, it didn't make sense to me either in my initial post. Sorry for the confusion, Musa.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-12-2008 04:56 AM
07-12-2008 04:56 AM
Re: How to install patch
Why not download the aC++ runtime patch for libstream? PHSS_35055
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-12-2008 09:23 AM
07-12-2008 09:23 AM
Re: How to install patch
Use the command:
# swverify \*
and track what software and patches SD-UX feel are out of sync with the IPD. This should hopefully be a short list and you can make it a priority to load. If it seems like everything is broken, consider a full reinstall at the next update. I am funny about systems being in a *known*, good state.