在用户根目录下有一个.bash_profile配置文件,该配置只对当前用户有效.使用ll -a命令可以查看到该文件.使用vi编辑器打开该文件后,在其中加入LANG=zh_CN.GBKexport LANG即可正常显示中文.更改.bash_profile配置文件后,该文件内容如下:# .bash_profile# Get the aliases and functionsif [ -f ~/.bashrc ]; then . ~/.bashrcfi# User specific environment and startup programsPATH=$PATH:$HOME/binLANG=zh_CN.GB2312export LANGexport PATHunset USERNAME