- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- patch bundles
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
11-11-2002 12:43 AM
11-11-2002 12:43 AM
I need to create a patch bundle containing approximately 6 patches. I have searched the man pages but am not sure how to create this bundle from scratch. Can anybody help?
Thanks in advance,
Trystan.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-11-2002 01:00 AM
11-11-2002 01:00 AM
SolutionDownload the patches into /tmp (for example) then the following will create a depot and install the patches. Don't forget to take a backup first.
# cd /tmp
# for X in PH*.htm
> do
> sh ${X}
> done
# PDIR=/tmp/patch_depot
# mkdir ${PDIR}
# for X in PH*.depot
> do
> swcopy -s ${PWD}/${X} \* @ ${PDIR}
> done
# swlist -s ${PDIR}
#swinstall -x autoreboot=true -x patch_match_target=true -s /tmp/patches
Cheers
Keely
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-11-2002 01:01 AM
11-11-2002 01:01 AM
Re: patch bundles
Have a look at this:
http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x0a26eea29889d611abdb0090277a778c,00.html
or this:
http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0xf086107d277ad611abdb0090277a778c,00.html
This is a very popular subject in the forum, if you use the search button in the top left hand corner and specify 'create patch bundle' there are a lot more threads.
Regards,
John
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-11-2002 02:28 AM
11-11-2002 02:28 AM
Re: patch bundles
You can execute the following:
for i in PHKL_XXX PHSS_YYY PHCO_ZZZ
do swcopy -s /tmp/$i.depot -x enforce_dependencies=false -x mount_all_filesystems=false \* @ /tmp/depot1 done
(*) Change the patch names and the pathnames for the real ones.
Best regards,
Manel.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-11-2002 03:42 AM
11-11-2002 03:42 AM
Re: patch bundles
1. create a depot e.g
mkdir /tmp/depot/sripatch
2. to copy the patches to the depot
swcopy -s /tmp/PHKL_12345.depot PHKL_12345 @ /tmp/depot/sripatch
3. do the second step to all the patches.
4. to install thru the bundle
swinstall -s /tmp/depot/sripatch
Thanks & Regards & Good Luck !!!
Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-11-2002 03:49 AM
11-11-2002 03:49 AM
Re: patch bundles
extract all the depots to a temp directory.
create a depot directory
mkdir /tmp/depot
swcopy all the depot from the temp directory to the depot directory
swcopy -s /temp @ /tmp/depot
swreg the depot as
swreg -l depot /tmp/depot
this will create a directory depot for you, to install use
swinstall -s /tmp/depot
But if you want to create tape depot that is useful to put onto a CD or tape , create a bundle using a psf file
swpackage -x media_type=tape -s bundle.psf @ /destiation
this will create a single .depot file.
Hope this helps.
regard
baba
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-11-2002 03:55 AM
11-11-2002 03:55 AM
Re: patch bundles
/opt/ignite/bin/make_bundles
to create a bundle.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-11-2002 06:17 AM
11-11-2002 06:17 AM
Re: patch bundles
Or,
Create a dir /tmp/bundle01
use swcopy to select your 6 patches and copy them into the bundle - use /tmp/bundle01 as your target.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-11-2002 06:24 AM
11-11-2002 06:24 AM
Re: patch bundles
copy all the patches to any directory (say /tmp)
#cd /tmp
# for i in PH*.txt
do
sh $i
done
# mkdir patch_depot
#for i in PH*.depot
do
swcopy -s ${PWD}/$i \* @ /tmp/patch_depot
done
#swinstall -s /tmp/patch_depot
will install all the patches