zoukankan      html  css  js  c++  java
  • 利用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
  • 相关阅读:
    了解Onunload,onbeforeunload事件
    asp.net 获取客服端的Ip地址
    HttpWebRequest WebResponse 对象简单了解
    web 编辑word 之dsoframer控件
    web编辑word之dsoframer(二)
    WebClient 对象实现下载和上传
    jquery datagrid 后台获取datatable处理成正确的json字符串
    doc文档的web查看
    C#中处理字符串对象的函数
    类3-类的static属性
  • 原文地址:https://www.cnblogs.com/Alex-Zeng/p/4330511.html
Copyright © 2011-2022 走看看