SSH Secure Shell Client链接centos后文件夹显示中文乱码,不是...
发布网友
发布时间:2022-04-24 08:10
我来回答
共1个回答
热心网友
时间:2022-05-04 23:46
使用linux,在用户根目录下有一个.bash_profile配置文件,该配置只对当前用户有效.
使用ll -a命令可以查看到该文件.使用vi编辑器打开该文件后,在其中加入
LANG=zh_CN.GBK
export LANG
即可正常显示中文.更改.bash_profile配置文件后,该文件内容如下:
# .bash_profile
# Get the aliases and functions
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
# User specific environment and startup programs
PATH=$PATH:$HOME/bin
LANG=zh_CN.GBK
export LANG
export PATH
unset USERNAME