- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Creating new 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
05-29-2008 11:43 AM
05-29-2008 11:43 AM
Root: /software ï ¨ mkdir /software/vim/depot
Swpackage â s vim-7.1-hppa-11.23.depot â d /software/vim/depot
As for the vim file I downloaded it from this website: http://hpux.cs.utah.edu/hppd/hpux/ which was saved to my PC with the .gz extension. After ftping it to my UNIX server I unzipped the file. Is it possible that I messed up the file somewhere along the way?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2008 11:54 AM
05-29-2008 11:54 AM
Re: Creating new Depot
With swcopy you can combine several depots to one.
Hope this helps!
Regards
Torsten.
__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.
__________________________________________________
No support by private messages. Please ask the forum!
If you feel this was helpful please click the KUDOS! thumb below!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2008 11:54 AM
05-29-2008 11:54 AM
SolutionUse 'swcopy' to collect everything you need or want in one depot file:
# swcopy -v -s /tmp/vim-7.1-hppa-11.23.depot -x enforce_dependencies=false \* @ /var/tmp/swdepot
...then to add "something" more:
# swcopy -v -s /tmp/something.depot -x enforce_dependencies=false \* @ /var/tmp/swdepot
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2008 12:09 PM
05-29-2008 12:09 PM
Re: Creating new Depot
You already have one depot - that is, your vim-7.1-hppa-11.23.depot file. You want to copy it and any dependencies to a common location for installation. The command you need is "swcopy".
Background:
A depot can exist in two forms - a "directory depot" (a directory with a set of sub-directories and files in it) or a "tape depot" (usually a .depot file these days, but it could also be written on a tape, hence the name).
A directory depot is the form that is generally more flexible for sysadmin tasks: it can be accessed remotely between HP-UX hosts and it's easy to add other things to a directory depot. However, to move it around, you must copy the entire directory structure of the depot and then register the depot in its new location using swreg, which might be inconvenient.
A tape depot is more easy to move around: just a single big file. But you can install it only locally, and you cannot change its contents without first transforming it to a directory depot.
In this case, the command you need is:
swcopy -s /full/path/to/vim-7.1-hppa-11.23.depot vim @ /software/vim/depot
(i.e. swcopy -s
Then execute a similar command with all the dependencies of vim, keeping the "@ /software/vim/depot" part the same.
The input of swcopy may be a tape depot or another directory depot, but the output will always be a directory depot.
The swpackage command can be used to convert a directory depot into a tape depot, or with an well-written PSF file it can package any old set of loose files into a swinstall-installable "product" and store it in a new depot.
MK
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2008 03:03 PM
05-29-2008 03:03 PM