- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: swinstall interactive text mode
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
08-22-2002 06:35 AM
08-22-2002 06:35 AM
swinstall -s /tmp/depotname.depot
I want to find a way to install without any interaction using a script. Most of the time I will be in a remote shell.
Thanks!
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-22-2002 06:44 AM
08-22-2002 06:44 AM
Re: swinstall interactive text mode
If you don't specify the products to install it automatically takes you into interactive mode.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-22-2002 06:45 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-22-2002 06:46 AM
08-22-2002 06:46 AM
Re: swinstall interactive text mode
check and make sure that the path is correct. Did you see any messages in swagentd.log? what about giving some options too:
# swinstall -x autoreboot=true -x match_target=true -s /tmp/depot_name.depot
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-22-2002 06:50 AM
08-22-2002 06:50 AM
Re: swinstall interactive text mode
define product.
For example I have netscape on remote sys1 in my home dir.
#swinstall -s remsys1:/home/sachin/netscape netscape
Thanks
Sachin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-22-2002 06:53 AM
08-22-2002 06:53 AM
Re: swinstall interactive text mode
A. Clay S.'s method is the one I have used. It should work in your case.
Hai
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-22-2002 06:56 AM
08-22-2002 06:56 AM
Re: swinstall interactive text mode
What you can usually do if it is one patch or product then:
swinstall -s /tmp/PHKL_9000.depot PHKL_9000 \*
If you wanted to get out of the GUI and use the TUI, then enter unset DISPLAY before you run your swinstall command.
This is a script I use to install a lot of patches, the whole thing isn't there but you get the gist:
for i in `cat site.list`
do
if [ '#' != $(echo $i | cut -b1) ]
then
echo "Installing $PATCH_11 on $i"
sleep 1
$SSHBIN/ssh $i "/usr/sbin/swinstall -s DEPOTSERVER:/var/spool/sw/$PATCH_11 \*"
else
echo $i > /dev/null
fi
done
GL,
C