安裝rlwrap(解決Sqlplus 方向鍵出現亂碼)

duduyey發表於2014-08-12
1. 進入 http://utopia.knoware.nl/~hlub/rlwrap/ 下載安裝檔案

2. 解壓檔案 tar zxvf rlwrap-0.37.tar.gz

3. 安裝rlwrap依賴的兩個包

[root@localhost ~]# yum search readline
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
* addons: repo.umbeehosting.com
* base: repo.umbeehosting.com
* extras: mirror.krystal.co.uk
* updates: mirror.simwood.com
============================================================= Matched: readline =============================================================
compat-readline43.i386 : The readline 4.3 library for compatibility with older software.
lftp.i386 : A sophisticated file transfer program
php-readline.i386 : Standard PHP module provides readline library support
readline.i386 : A library for editing typed command lines.
readline-devel.i386 : Files needed to develop programs which use the readline library.

[root@localhost ~]# yum install compat-readline43.i386

[root@localhost ~]# yum install readline-devel.i386

4. 安裝rlwrap

[oracle@localhost rlwrap-0.41]$ pwd
/data/software/rlwrap-0.41
[oracle@localhost rlwrap-0.41]$  ./configure && make && make install

5. 驗證安裝是否成功
[oracle@localhost rlwrap-0.41]$ which rlwrap
/usr/local/bin/rlwrap
[oracle@localhost rlwrap-0.41]$ rlwrap
Usage: rlwrap [options] command ...

Options:
  -a[password prompt]        --always-readline[=password prompt]
  -A                         --ansi-colour-aware
  -b                  --break-chars=
  -c                         --complete-filenames
  -C                 --command-name=
  -D  <0|1|2>                --history-no-dupes=<0|1|2>
  -e                --extra-char-after-completion=
  -f        --file=
  -g                 --forget-matching=
  -h                         --help
  -H                   --history-filename=
  -i                         --case-insensitive
  -I                         --pass-sigint-as-sigterm
  -l                   --logfile=
  -n                         --no-warnings
  -N                         --no-children
  -o                         --one-shot
  -O                 --only-cook=
  -p[colour]                 --prompt-colour[=colour]
  -P                  --pre-given=
  -q                  --quote-characters=
  -m[newline substitute]     --multi-line[=newline substitute]
  -M  <.ext>                 --multi-line-ext=<.ext>
  -r                         --remember
  -R                         --renice
  -v                         --version
  -s                      --histsize= (negative: readonly)
  -S                 --substitute-prompt=
  -t                   --set-term-name=
  -w                      --wait-before-prompt= (msec, <0  : patient mode)
  -W                         --polling
  -z         --filter= (-z listing lists installed filters)

bug reports, suggestions, updates:

6 修改oracle使用者初始化引數檔案

[oracle@localhost ~]$ vi .bash_profile

新增

alias sqlplus='rlwrap sqlplus'
alias rman='rlwrap rman'

使引數檔案立即生效

source .bash_profile

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/28719055/viewspace-1249968/,如需轉載,請註明出處,否則將追究法律責任。

相關文章