安装软件提示
UnicodeDecodeError: 'utf-8' codec can't decode byte
提示字符集错误
使用
echo $LANG
zh_CN.GB18030
所以需要修改字符集
export LANG=zh_CN.UTF-8
vim /etc/sysconfig/i18n
LANG="zh_CN.UTF-8"
source /etc/sysconfig/i18n
Centos7 xshell 连接系统显示中文乱码解决
export LANG=zh_CN.gbk
永久生效在配置文件中写入:
# vim /etc/profile
# 在末尾追加
export LANG=zh_CN.gbk
然后执行
source /etc/profile