- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Software installation on HPUX 11.11
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
01-01-2008 10:23 PM
01-01-2008 10:23 PM
I had to install 25 software's which are in .depot format. I want to install them in single shot. Can i also install them through CLI. I had tried to install it through swinstall but every time i try to install the software i am not able to find them in the GUI. I want to install them through CLI.
Thanks in Advance.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-01-2008 10:35 PM
01-01-2008 10:35 PM
Solutionyou nee to create a depot file in order to install depots in one shoot.
for i in *.depot
do
swcopy -x enforce_dependencies=false -s ${PWD}/$i \* @ /home/DEPOT/
done
swpackage -s /home/DEPOT/ -x write_remote_files=TRUE -x layout_version=1.0 -x media_type=tape @ /home/allpatch.depot
swinstall -s /home/allpatch.depot
Hasan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-02-2008 06:14 AM
01-02-2008 06:14 AM
Re: Software installation on HPUX 11.11
You don't really need to make a tape depot unless you want to put it on some ftp site.
You can install directly from your directory depot /home/DEPOT/, even from other machines:
# swinstall -s /home/DEPOT \*
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-02-2008 06:25 AM
01-02-2008 06:25 AM
Re: Software installation on HPUX 11.11
The syntax for other machines would be:
# swinstall -s source-machine:/home/DEPOT \*
(This works because swcopy calls swreg(1M).)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-04-2008 03:14 AM
01-04-2008 03:14 AM