码迷,mamicode.com
首页 > 系统相关 > 详细

Linux Tcl和Expect的安装

时间:2017-05-04 00:12:46      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:--   备份   存在   文件   子目录   htm   lun   配置   cts   

一、先安装Tcl
1、下载:tcl版本 8.4.19
http://sourceforge.net/projects/tcl/files/Tcl/8.4.19/tcl8.4.19-src.tar.gz/download

2、解压缩源码包
tar xfvz tcl8.4.19-src.tar.gz

3、安装配置
#cd tcl8.4.19/unix
#./configure --prefix=/usr/local/tcl --enable-shared
#make
#make install

4、子目录unix下面的tclUnixPort.h 复制到generic中
#cp tcl8.4.19/unix/tclUnixPort.h tcl8.4.19/generic/

5、创建软链接
#ln -s /usr/local/tcl/bin/tcl8.4 /usr/bin/tclsh

 

二、后安装expect
1、下载expect版本5.43:
http://download.chinaunix.net/download/0003000/2845.shtml

2、解压缩源码包
tar -xvf expect5.43.tar.gz

3、安装配置
#cd expect5.43
#./configure --prefix=/usr/local/expect --with-tcl=/usr/local/tcl/lib --with-tclinclude=../tcl8.4.19/generic
#make
#make install
#ln -s /usr/local/tcl/bin/expect /usr/local/expect/bin/expect

5、创建链接到/bin下
#ln -s /usr/local/expect/bin/expect /usr/bin/expect
注意:如果已经存在/usr/bin/expect,请备份原来的expect文件,再删除,然后创建expect的软链接

 

三、完成,测试
  #expect
  expect1.1>

Linux Tcl和Expect的安装

标签:--   备份   存在   文件   子目录   htm   lun   配置   cts   

原文地址:http://www.cnblogs.com/zhanggaofeng/p/6804482.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!