- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- depot creation
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-23-2008 01:28 PM
07-23-2008 01:28 PM
depot creation
plugin.ini config settings
disusge file
discagnt---executable
tnks in advance
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-23-2008 01:34 PM
07-23-2008 01:34 PM
Re: depot creation
Software Distributor Administration Guide for HP-UX 11i v1, 11i v2, and 11i v3
HTML - http://docs.hp.com/en/5992-2146/index.html
PDF - http://docs.hp.com/en/5992-2146/5992-2146.pdf
I believe the information you require can be found in "Chapter 10 Creating Software Packages":
HTML - http://docs.hp.com/en/5992-2146/ch10.html
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-24-2008 12:58 AM
07-24-2008 12:58 AM
Re: depot creation
http://forums.itrc.hp.com/service/forums/questionanswer.do?threadId=1241895
You may want to just skip to Bob's reply about Software Package Builder:
http://www.hp.com/portal/swdepot/displayProductInfo.do?productNumber=SwPkgBuilder
>plugin.ini config settings
This isn't a valid HP-UX suffix and maybe harder to do than on Windows.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-24-2008 05:10 AM
07-24-2008 05:10 AM
Re: depot creation
Creating a separate software depot for your patches is useful,
when space is tight and patches have dependencies.
Assuming you have two patches PHNE_20000 and PHNE_20001.
unshare all two patches by typing the following commands.
sh PHNE_20000
sh PHNE_20001
Next, we have to create a new software depot on the directory /newdir/depot
mkdir /newdir/depot
swpackage -s PHNE_20000.depot -d /newdir/depot
Register your new depot on the sd-ux.
swreg -l depot /newdir/depot
Copy the next patch to the newly created software depot.
swcopy -s `pwd`/PHNE_20001.depot PHNE_20001 @ /newdir/depot
You are now ready to install your patches
swinstall -s /newdir/depot
Hope this helps
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-24-2008 05:15 AM
07-24-2008 05:15 AM
Re: depot creation
Since when are there valid or invalid "HP-UX suffix[es]"? Last I checked you could have an executable called "my.stuff" and it would run just fine.
Granted a '.ini' extension is TYPICALLY associated with Windows, but saying it isn't a valid HP-UX suffix is going a bit far.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-25-2008 01:41 AM
07-25-2008 01:41 AM
Re: depot creation
True. But I meant valid as in "does something magical" as on Windows. There is no special meaning for .ini unless ami6788 programs/scripts it. Or that file means something special so some other existing tool.
>DMVamsi: we have to create a new software depot on the directory /newdir/depot
You should not fall into the SD darkside and use the N different commands/options that do the same thing.
>mkdir /newdir/depot
>swpackage -s PHNE_20000.depot -d /newdir/depot
>swreg -l depot /newdir/depot
Instead of these 3 different commands, you should just use the obvious:
swcopy -x enforce_dependencies=false -s $PWD/PHNE_20000.depot \* @ /newdir/depot
And use this format for each depot you want to copy.