- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- swinstall question
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-25-2008 04:52 AM
11-25-2008 04:52 AM
swinstall question
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-25-2008 04:58 AM
11-25-2008 04:58 AM
Re: swinstall question
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-25-2008 04:59 AM
11-25-2008 04:59 AM
Re: swinstall question
Copy all dependencies to one depot:
swcopy -s dep1.depot \* @ /var/depot/yourdepot
.
.
.
after that install all at once:
swinstall -s /var/depot/yourdepot \*
or
swinstall -s /var/depot/yourdepot dep1 dep2 dep3 dep4 ...
regards,
ivan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-25-2008 05:00 AM
11-25-2008 05:00 AM
Re: swinstall question
Download all the dependency depots into a single directory and the gvim depot.
Then:
# run this in script form with $1 ad the target depot
for i in *.depot
do
swcopy -x write_remote_files=true -x enforce_dependencies=false -s ${PWD}/$i \* @ ${1}
done
Example
depmake gvim_with_deps.depot
swinstall $PWD/gvim_with_deps.depot \*
1 line install
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
11-25-2008 05:02 AM
11-25-2008 05:02 AM
Re: swinstall question
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-25-2008 06:14 AM
11-25-2008 06:14 AM
Re: swinstall question
swcopy -x write_remote_files=true -x enforce_dependencies=false -s /usr/local/downloads/vim/*.depot \* @/tmp/depot
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-25-2008 06:56 AM
11-25-2008 06:56 AM
Re: swinstall question
You must do something like this:
cd /usr/local/downloads/vim
for DEPOT in *.depot
do
swcopy -x write_remote_files=true -x enforce_dependencies=false -s /usr/local/downloads/vim/${DEPOT} \* @ /tmp/depot
done
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-25-2008 07:26 AM
11-25-2008 07:26 AM
Re: swinstall question
# cd /tmp
# mkdir depot
# for i in /tmp/*.depot
# do
# swcopy -s $i \* @/tmp/depot
# done
# swlist -l depot
# swinstall -s /tmp/depot