确认系统是否支持中文字符集
locale -a |grep CN
image
必须包含zh_CN.utf8
Centos7修改系统默认字符集
vim /etc/locale.conf
修改为以下内容:
# LANG="en_US.UTF-8"
LANG="zh_CN.UTF-8"
安装中文字符集支持
yum -y groupinstall "X Window System"
yum -y groupinstall chinese-support # Centos7如果报错找不到chinese-support可忽略
yum -y groupinstall Fonts
安装完成之后,是否需要重启有待测试
网友评论