linux--解决oracle sqlplus 中上下左右backspace不能用

时间:2021-10-29 18:09:20

1.  解决不能backspace

方法1: stty erase ^h

在oracle用户下;在用户环境配置文件.bash_profile中加入如下语句

stty erase ^h

方法2:在secureCRT工具操作

linux--解决oracle sqlplus 中上下左右backspace不能用

把图中的选项勾上即可;

相比之下;选择方法2吧。

2。 解决不能上下左右

在linux 上的oracle sqlplus 不能利用 上, 下 键来查看命令 而苦恼. rlwarp 工具可以帮助我们解决这个问题.

官方下载地址:  http://utopia.knoware.nl/~hlub/uck/rlwrap/

tar zxvf rlwrap-0.42.tar.gz

cd  rlwrap-0.42

./configure

make

make install

操作之前即可。

在oracle用户下;在用户环境配置文件.bash_profile中加入如下语句

alias sqlplus='rlwrap sqlplus'

FAQ

1. 在执行./configure 过程中

configure: error: 
     You need the GNU readline library(ftp://ftp.gnu.org/gnu/readline/ ) to build
     this program!

A: 需要安装readline包,别忘了libtermcap-devel包。