Oracle VM VirtualBox install centos 6 结尾

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

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

安装过程:

[root@centos6 oracle 11g install]# tar -zxvf rlwrap-0.37.tar.gz

[root@centos6 oracle 11g install]# cd rlwrap-0.37

[root@centos6 oracle 11g install]# ./configure

[root@centos6 oracle 11g install]# make

[root@centos6 oracle 11g install]# make install

这样就可以使用 rlwarp 了.

[oracle@centos6 database]$  rlwrap sqlplus "/ as sysdba"

SQL*Plus: Release 11.2.0.1.0 Production on Fri Jul 22 23:23:16 2011

Copyright (c) 1982, 2009, Oracle.  All rights reserved.

Connected to:

Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production

With the Partitioning, OLAP, Data Mining and Real Application Testing options

SQL> show user

USER is "SYS"

SQL> select * from v$version;

BANNER

--------------------------------------------------------------------------------

Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production

PL/SQL Release 11.2.0.1.0 - Production

CORE    11.2.0.1.0      Production

TNS for Linux: Version 11.2.0.1.0 - Production

NLSRTL Version 11.2.0.1.0 - Production

SQL> shutdown immediate

Database closed.

Database dismounted.

ORACLE instance shut down.

这样登录数据库 , 就可以使用上 下 键查找上次执行的命令.

如果每次都需要输入 rlwrap 感觉麻烦的话 , 还可以加入到 .bash_profile 中, 就不用每次都输入了.

alias sqlplus='rlwrap sqlplus'

alias rman='rlwrap rman'

这样就大公告成了,觉的是不是很爽。

到此oracle 11G R2 on centos 6 install 完美成功!

你可能感兴趣的:(oracle,centos,centos,R2,11g,6)