- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: create a 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
11-26-2001 11:03 PM
11-26-2001 11:03 PM
How i can create a bundle since some patches files (PHKE, ...)
My goal is to install in one shot instead of one after one...
In advance, i thank you.
Charles.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-26-2001 11:53 PM
11-26-2001 11:53 PM
Re: create a bundle
1. extract patch
#sh PHKL_xxxxx
2. make depot directory.
mkdir /tmp/depot
3. use swcopy GUI
#swcopy
destination is /tmp/depot
source is PHKL_xxxxx.depot
repeat with every patch , use same destination
/tmp/depot
---------
/tmp/depot will be depot for patches you can install at one time.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-27-2001 12:18 AM
11-27-2001 12:18 AM
Solution- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-27-2001 12:21 AM
11-27-2001 12:21 AM
Re: create a bundle
swpackage -s /tmp/depot -x target_type=tape -x target_tape=/dev/rmt/0m.
The target_tape is only needed if you have more than one tape drive.
Have fun.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-27-2001 12:29 AM
11-27-2001 12:29 AM
Re: create a bundle
Hi,
store all the downloaded patches(.txt) in one directory say /tmp
#cd /tmp
#for i in *.txt
do
sh *.txt
done
This will create .depot for all the patches.
#mkdir /tmp/patch_depot
for i in '/tmp/*.depot'
do
swcopy -s /tmp/{$i} @ /tmp/patch_depot
done
#swreg -l depot /tmp/patch_depot
#swinstall -s /tmp/patch_depot
all the patches will be installed.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-27-2001 12:45 AM
11-27-2001 12:45 AM
Re: create a bundle
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.
...BPK...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-27-2001 12:49 AM
11-27-2001 12:49 AM
Re: create a bundle
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.
...BPK...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-27-2001 02:56 PM
11-27-2001 02:56 PM
Re: create a bundle
get "Ignite/UX" installed, and use the tool "make-bundle" from it.
HTH,
Wodisch