在安装oracle前,root用户和oracle用户会遇到乱码问题,经高人指点问题解决,解决方式如下:在.bash_profile文件里添加
LANG=C
export LANG
例如:
[oracle@linuxapple ~]$ vi .bash_profile
# .bash_profile
# Get the aliases and functions
if [ -f ~/.bashrc ]; then
. ~/.bashrc
LANG=C
export LANG
fi
# User specific environment and startup programs
PATH=$PATH:$HOME/bin
export PATH
unset USERNAME