- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Want to make depot file
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
03-03-2003 10:52 PM
03-03-2003 10:52 PM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-04-2003 12:31 AM
03-04-2003 12:31 AM
Solutionhttp://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x48920cb17a32d5118fef0090279cd0f9,00.html
will get you going
http://docs.cup.hp.com/cgi-bin/fsearch/framedisplay?top=/hpux/onlinedocs/B2355-90754/B2355-90754_top.html&con=/hpux/onlinedocs/B2355-90754/00/00/23-con.html&toc=/hpux/onlinedocs/B2355-90754/00/00/23-toc.html&searchterms=file%7cdepot&queryid=20030304-002939
Is the 11i manual about it
Steve Steel
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-04-2003 12:53 AM
03-04-2003 12:53 AM
Re: Want to make depot file
In order to install multiple patches in one go, you will need to create a patches depot as follows :
1. Obtain the set of patches you want to install in your depot.
2. Unshar the patches:
# for i in PH*
do
sh $i
done
3. Combine all these separate depots into one depot. To do this, use the swcopy command. First, create the directory to store the patches:
# mkdir /tmp/patches
4. Now take the patch depots and copy them into the target depot:
# for i in PH*depot
do
swcopy -x enforce_dependencies=false -s ${PWD}/$i \* @ /tmp/patches
done
5. Verify the contents of the depot:
# swlist -d @ /tmp/patches
6. You can now use swinstall to install these patches in one hit. Run interactively, and select the patches you want.
Rgds.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-04-2003 01:37 AM
03-04-2003 01:37 AM
Re: Want to make depot file
i guess this helps you.
http://hpux.connect.org.uk/hppd/hpux/Networking/FTP/proftpd-1.2.4/
regards
balaji
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-04-2003 06:18 AM
03-04-2003 06:18 AM
Re: Want to make depot file
Go to
http://itrc.hp.com
Click patches
Click HP-UX
Use the search function to find your patch, click the button to add to your shopping or download list for what you want. It includes all dependencies.
Download the patches as one zip file.
ftp or whatever to get them on your hp box
unzip patches.zip
I a script called create_depot_hp-ux_11 is included
Run it with the -d parameter to create a depot followed by where you want the depot.
You can even modify the script to add other patches to your temporary depot.
Because sometimes dangerous dependencies are included in these bundles I recommmend the following install procedure
swinstall -x autoreboot=true -x reinstall=false -s /depot_location \*
The reinstall line keeps patches that are dangerous if they reinstall from messing up you life.
Can you say LITS patch, PHKL_18543(never reinstall it, trust a guy who did).
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-05-2003 01:11 AM
03-05-2003 01:11 AM
Re: Want to make depot file
Followed Steve's link and after that the link to hp.docs for an example of the PSF and it works great.
Basically it is nothing more like;
- create PSF
- swpackage -s 'psf-file' -d 'path/file.depot'
- swreg -l depot 'path/file.depot'