首页 > 代码库 > CentOS显示中文乱码,需安装中文语言包

CentOS显示中文乱码,需安装中文语言包

echo $LANG        #查看当前使用的系统语言

locale -a         #查看是否有中文语言包,没有就运行下面的命令安装修改

yum install kde-l10n-Chinese -y;yum reinstall glibc-common -y   #或者 yum groupinstall chinese-support

vi /etc/sysconfig/i18n   修改LANG="zh_CN.UTF-8" 然后保存

source /etc/sysconfig/i18n         


本文出自 “高防服务器销售,自带运维” 博客,请务必保留此出处http://kenvik.blog.51cto.com/11000054/1858426

CentOS显示中文乱码,需安装中文语言包