- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- How do you make 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
07-20-2000 12:51 AM
07-20-2000 12:51 AM
How do you make a Patch Bundle?
i need to create a Patch Bundle with several patches I''ve downloaded. However I've never used 'swpackage', and the man page is confusing. Can someone simply explain how I can do this?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-20-2000 01:06 AM
07-20-2000 01:06 AM
Re: How do you make a Patch Bundle?
Assuming you've not unshar'ed them :-
in the directory all the patches are :-
for i in `ls PH*`
do
sh $i
swcopy -s
done
replace
You can then either swinstall the patches from /var/spool/sw or then package them to tape using
swpackage -s /var/spool/sw -d /dev/rmt/0m -x target_type=tape
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-20-2000 01:10 AM
07-20-2000 01:10 AM
Re: How do you make a Patch Bundle?
# cd /tmp/patch
# for i in /tmp/patch/PH??_?????
>do
>sh $I
>swcopy -s $i.depot * @ /var/patches
>done
# swlist -l product @ /var/patches
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-20-2000 01:13 AM
07-20-2000 01:13 AM
Re: How do you make a Patch Bundle?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-20-2000 01:14 AM
07-20-2000 01:14 AM
Re: How do you make a Patch Bundle?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-20-2000 01:28 AM
07-20-2000 01:28 AM
Re: How do you make a Patch Bundle?
Patrick and Andy are correct. But there are a few other thing you should watch out for when you plan to install all the patches in the bundle.
- when you have several patches that require a reboot, it might be handy to swmodify the is_reboot flag to false for all patches. The reboot can be done manually at the end of the installation, are can be integrated in a script that takes care of installing the patches and the reboot
- Watch out for patch dependencies and installation order. The patches in your bundle will be installed in alphabetical order. This means that PHCO patches will be installed before PHKL patches and so forth. If there is a dependency between different patche, make sure they are installed in the correct order. This is OK if the alphabetical order is the order of installation. In the other case, you can split the patches into 2 bundles to ensure the right installation order.
Hope this information is of some help,
Rik
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-20-2000 07:22 AM
07-20-2000 07:22 AM
Re: How do you make a Patch Bundle?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-20-2000 12:10 PM
07-20-2000 12:10 PM
Re: How do you make a Patch Bundle?
Best Wishes,
Cheryl
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-20-2000 03:34 PM
07-20-2000 03:34 PM
Re: How do you make a Patch Bundle?
is ok, but to put everything into a "bundle" you just need the command
"make_bundles" - which comes with the Ignite/UX product (look in
http://www.software.hp.com/products/IUX to download it - it is free :-)
Install it, and then use "make_bundle -B -n All-Patches -d /var/spool/sw".
That's it.
Wodisch