利用rlwrap配置linux下oracle sqlplus 历史记录回调
1.下载rlwrap wget http://utopia.knoware.nl/~hlub/uck/rlwrap/rlwrap-0.42.tar.gz 2.解压 tar -xvzf rlwrap-0.42.tar.gz 3.检查配置 cd /opt/rlwrap-0.42 [root@localhost rlwrap-0.42]# ./configure configure: checking for pty ranges... checking for tgetent... no checking for tgetent in -ltinfo... no checking for tgetent in -lcurses... no checking for tgetent in -lncurses... no checking for tgetent in -ltermcap... no configure: WARNING: No termcap nor curses library found checking for readline in -lreadline... no configure: error: You need the GNU readline library(ftp://ftp.gnu.org/gnu/readline/ ) to build this program! 报错缺少包
4.在安装光盘查找对应的包 [root@localhost cdr]# ls ./Packages/ | grep termcap compat-libtermcap-2.0.8-49.el6.i686.rpm compat-libtermcap-2.0.8-49.el6.x86_64.rpm [root@localhost cdr]# 5.继续安装 termcap,curses,readline 相关的包,直到运行 configure得到: checking that generated files are newer than configure... done checking that generated files are newer than configure... done configure: creating ./config.status config.status: creating Makefile config.status: creating filters/Makefile config.status: creating doc/Makefile config.status: creating src/Makefile config.status: creating doc/rlwrap.man config.status: creating config.h config.status: executing depfiles commands Now do: make (or gmake) to build rlwrap make check for instructions how to test it make install to install it [root@localhost rlwrap-0.42]# 创建,检查,安装。 6.切换到oracle用户下,配置命令别名 vi .bash_profile 加入别名sqlplus/rman配置 alias sqlplus=‘rlwrap sqlplus‘ alias rman=‘rlwrap rman‘ 7.测试OK
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。