- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- software depot
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-09-2009 10:41 AM
07-09-2009 10:41 AM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-09-2009 10:48 AM
07-09-2009 10:48 AM
Re: software depot
To create or modify the contents of a software depot, use 'swcopy'. If you enter 'swcopy' at the command line without any options, you will get an interactive session.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-09-2009 10:54 AM
07-09-2009 10:54 AM
Re: software depot
Depots can be created from patches, with swcopy.
http://docs.hp.com/en/5992-4020/ch03s01.html
They can be created to deliver new software or even make a disk based copy of the OS for system cloning and other installation.
Cookbook:
http://www.docs.hp.com/en/SD/cookbook.html
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
07-09-2009 11:00 AM
07-09-2009 11:00 AM
Re: software depot
If you want to create depot from cdrom
mount your cdrom to /cdrom,
copy the contents of the depot to the local system
under the /var/tmp/depot directory.
swcopy -s /cdrom/patch_name \* @ /var/tmp/depot
Invoke an interactive session, using the default depot at hostX as the source:
swcopy -i -s hostX
Regards
Sanjeev
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-10-2009 05:19 AM
07-10-2009 05:19 AM
Re: software depot
could u tell how to copy the specific packages from cdrom to software depot.say my depot file /var/depot and the package name is ignite.THXS in advance
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-10-2009 06:31 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-10-2009 08:56 AM
07-10-2009 08:56 AM
Re: software depot
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-10-2009 10:00 AM
07-10-2009 10:00 AM
Re: software depot
> swcopy -s /cdrom/ignite \* @ /var/depot.. May i know "\" indicates what
The '\' escapes the '*'. This prevents the shell from trying to expand the '*' into a list of files which would then be passed to 'swcopy'. Using the escaped '*' means that that is passed intact to 'swcopy'.
To see the difference, do:
# echo *
...and:
# echo \*
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-10-2009 07:29 PM
07-10-2009 07:29 PM
Re: software depot
Strictly speaking, you can only create depots with swpackage(1m) or SPB. swcopy will only copy/merge depots.
>May I know "\" indicates what?
That we are too lazy to type 3 chars, "*", to suppress shell wildcard expansion. :-)
Note when you use swcopy, you typically use "-x enforce_dependencies=false" to not complain.