|
本人是新装的RH9首先更改用户名目录下的.bashrc该文件为隐藏可在可在文本编缉器打开中直接
输入/home/luo/.bashrc
我的内容如下:
# .bashrc
# User specific aliases and functions
# Source global definitions
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi
將其内容改成
# .bashrc
# User specific aliases and functions
export LC_CTYPE="zh_CN"
export XMODIFIERS="@im=fcitx"
export LANG="zh_CN.UTF-8"
# Source global definitions
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi
然后保存
另在建立一个名为.i18n新文件
输入内容
LANG="zh_CN.UTF-8"
保存后重启
在终端上输入fctix |
|