- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: swinstall problem -- always run interactive mo...
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
02-14-2008 10:21 AM
02-14-2008 10:21 AM
swinstall problem -- always run interactive mode even with sw specify
I have a strange problem. when I run swinstall in the script, even after I specify the sw, it will try to run in interactive UI mode. But if I manually run it in the command line, it will be ok and install the sw without the UI mode. And this is only happen to some servers, not all.
Any idea how I can resolve this?
Thanks in advance for your help.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-14-2008 10:33 AM
02-14-2008 10:33 AM
Re: swinstall problem -- always run interactive mode even with sw specify
regards,
ivan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-14-2008 10:40 AM
02-14-2008 10:40 AM
Re: swinstall problem -- always run interactive mode even with sw specify
* The interactive UI failed to start. If you wish to run non-interactively, you must specify some software as part of the swinstall command.
And I did specify sw.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-14-2008 12:01 PM
02-14-2008 12:01 PM
Re: swinstall problem -- always run interactive mode even with sw specify
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-14-2008 01:10 PM
02-14-2008 01:10 PM
Re: swinstall problem -- always run interactive mode even with sw specify
-x logdetail=true
to see more information.
regards,
ivan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-14-2008 01:20 PM
02-14-2008 01:20 PM
Re: swinstall problem -- always run interactive mode even with sw specify
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-14-2008 01:43 PM
02-14-2008 01:43 PM
Re: swinstall problem -- always run interactive mode even with sw specify
You can also cut and attach here the last session details.
regards,
ivan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-14-2008 06:56 PM
02-14-2008 06:56 PM
Re: swinstall problem -- always run interactive mode even with sw specify
swinstall -s /pathtodepot/sw.depot
If you are loading everything on the depot, use \* to specify the packages:
swinstall -s /pathtodepot/sw.depot \*
Now if this script is more complicated such as ssh or remsh, then you'll need to enclose the list in single quotes:
swinstall -s /pathtodepot/sw.depot '\*'
The alternative is to explicitly list all the packages to be installed:
swinstall -s /pathtodepot/sw.depot SWpkg1 SWpkg3
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-15-2008 12:26 PM
02-15-2008 12:26 PM
Re: swinstall problem -- always run interactive mode even with sw specify
and Yes, I did specify the pkg in swinstall. but I will try with the '' in the script to see if it make any different.