centos 7修改中文显示

首先查看自己当前使用的语言包

[root@master1 ~]# echo $LANG
en_US.UTF-8

可以看出为en_US,即英文。
安装最新的语言包

[root@master1 ~]# yum install kde-l10n-Chinese

查看中文语言包是否存在

[root@master1 ~]# locale -a|grep zh_CN
zh_CN
zh_CN.gb18030
zh_CN.gb2312
zh_CN.gbk
zh_CN.utf8

临时修改语言包

[root@master1 ~]# LANG="zh_CN.UTF-8"    #修改为中文
[root@master1 ~]# LANG="en_US.UTF-8"    #修改为英文

永久修改需要在vim /etc/locale.conf配置文件中进行设置,如下:

[root@master1 ~]# cat /etc/locale.conf 
LANG=zh_CN.UTF-8
[root@master1 ~]# init 6      #重启生效

你可能感兴趣的:(Linux)