首页 > 代码库 > 解决sqlplus上下左右键和Back Space键乱码不能用问题
解决sqlplus上下左右键和Back Space键乱码不能用问题
在使用Sqlplus的时候,我们会发现想用Back Space删除错误的单词的时候,会发现出现^H乱码,解决的办法有两种:
一:
直接使用Ctrl+Back Space 的组合键就可以删除
二:
在root用户下的.bash_profile文件中加入:stty erase ‘^H‘
再使用 cource .bash_profile 重新生效
在使用Sqlplus的时候,如果想上下翻阅代码而上下左右键不可用的话会让人很头疼。
下面是解决上下左右键不可用的方法:
一:安装readline(readline包 安装光盘就有)
[root@db1 ~]# yum -y install readline*
二:安装rlwrap
在官网下载rlwrap安装包 http://rpmfind.net/linux/rpm2html/search.php?query=rlwrap
解压缩安装:
[root@db1 rlwrap]# tar -xvf rlwrap-0.42.tar.gz
[root@db1 rlwrap]#cd rlwrap-0.42
[root@db1 rlwrap-0.42]#./configure
[root@db1 rlwrap-0.42]#make && make install
三:方便使用rlwrap
[root@db1 rlwrap-0.42]# vi /home/oracle/.bash_profile 加入下面两句
alias sqlplus=‘rlwrap sqlplus‘
alias rman=‘rlwrap rman‘
[root@db1 rlwrap-0.42]# soruce /home/oracle/.bash_profile 让他生效
切换到oracle用户,执行sqlplus就可以正常使用了
解决sqlplus上下左右键和Back Space键乱码不能用问题