- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- How do I create a patch bundle?
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
06-28-2002 12:01 PM
06-28-2002 12:01 PM
I had to download a series of patches and need to load them this weekend, it's a total of 8 and I downloaded them as a gzip package.
How do I load all of these as a bundle? I did not see any specific instructions. I know how to unpackage from gzip, but then I will get all of the patches unpackaged individually.
Can I get some hints. Thanks!
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-28-2002 12:08 PM
06-28-2002 12:08 PM
Re: How do I create a patch bundle?
sh PHXX_nnnnn #shar the patch
This will give you a .text and a .depot file. Use swcopy to put the depot file into a deport.
See "man swcopy" for more details.
HTH
Marty
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-28-2002 12:08 PM
06-28-2002 12:08 PM
Re: How do I create a patch bundle?
If you do a boolean search of the forums for
"depot" and "create" I think you will find many solutions. You can even use SAM to copy each patch to this depot.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-28-2002 12:18 PM
06-28-2002 12:18 PM
Re: How do I create a patch bundle?
Go thro this link
http://www.docs.hp.com/cgi-bin/fsearch/framedisplay?top=/hpux/onlinedocs/B1996-90011/B1996-90011_top.html&con=/hpux/onlinedocs/B1996-90011/00/00/95-con.html&toc=/hpux/onlinedocs/B1996-90011/00/00/95-toc.html&searchterms=SD&queryid=20010505-021209
http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x4279107d277ad611abdb0090277a778c,00.html
After creating the depot run the swinstall command
Piyush
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-28-2002 01:02 PM
06-28-2002 01:02 PM
SolutionThe new version of the ITRC Patch Database makes things easy!
Assuming the download file is in the /tmp directory (which is the recommended place):
# gunzip /tmp/patches.tar.gz
# tar -xvf /tmp/patches.tar
...you will see the patches you downloaded plus two files -- a 'README_hp-ux' and a 'create_depot_hp-ux' script. The README file constains your instructions.
The 'create_depot_hp-ux' script unpacks the
patches, and uses 'swcopy' to create the '/tmp/depot' which is the depot you specify for 'swinstall'.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-28-2002 02:38 PM
06-28-2002 02:38 PM
Re: How do I create a patch bundle?
If you have ignite loaded on your system, view the man page for make_bundle.
You might find that useful as well.
Have fun,
Kel
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-28-2002 02:40 PM
06-28-2002 02:40 PM
Re: How do I create a patch bundle?
the command is make_bundles (forgot the "s")
sorry 'bout that.
Kel
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-28-2002 02:44 PM
06-28-2002 02:44 PM
Re: How do I create a patch bundle?
Thanks everyone for your prompt responses. Piyoush, I really appreciate all the links you provided, I just have to find time to read them later, for now I think I have what I was looking for.