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
09-20-2002 09:57 AM
09-20-2002 09:57 AM
Trying to install Expect on HP-UX 10.20.
Have the expect port, as well as the tcl port, but I can not find a port for Tk8.0p2 which is needed for expect. Does anyone have the necessary libraries I need for 10.20?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-20-2002 10:28 AM
09-20-2002 10:28 AM
Re: Expect
I don't think the products support 10.20
That reason made me upgrade to 11.0
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-20-2002 10:28 AM
09-20-2002 10:28 AM
Re: Expect
Try it from here
http://hpux.connect.org.uk/hppd/hpux/Tcl/expect-5.37/
You can click on Dependencies to get to TCL/TK. That should be enough for you to run expect.
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-20-2002 10:54 AM
09-20-2002 10:54 AM
Re: Expect
According to that site, which is where I originally got expect and tcl:
"Requires Tcl 8.0p2, which is available in this category and can also use tk 8.0p2."
I found tcl 8.0p2, but I can not find tk 8.0p2, they don't have it on the site. I tried installing the latest tk, and the expect install fails because of a lack of a dependancy.
Do you know where I can get the depot for tk8.0p2?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-20-2002 11:16 AM
09-20-2002 11:16 AM
SolutionI think the depot was not created right as well tcltk not compiled to create libtcl.sl that expect looks for. You can go ahead and download both the depots. Install tcltk depot first. Then install expect. Make sure you make "dependencies off" in the options menu while installing expect.
Once it is done, create a link to /opt/expect/lib to /opt/tcl??/tcl/lib/libtcl??.sl as libtcl.sl
#ln -s /opt/tcl??/tcl/lib/libtcl??.sl /opt/expect/lib/libtcl.sl
Replace ?? with the version of tcl that gets installed.
Then try running expect.
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-20-2002 12:56 PM
09-20-2002 12:56 PM
Re: Expect
Quick question, from within an Expect script, how do I hide the standard output? I noticed it displays the commands in the script, and I would like to hide that output. Can I redirect that output to null?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-21-2002 02:09 AM
09-21-2002 02:09 AM
Re: Expect
eg:
my_script.exp > /dev/null