Linux终端显示中文
1、安装中文支持包
locale # 查看当前系统语言环境
locale -a # 查看系统支持的所有语言
yum groupinstall "fonts" # centos7
yum groupinstall "Chinese Support" # centos6
2、修改当前系统支持中文
#以下是CentOS 7.x和CentOS 6.x的路径:
vim /etc/locale.conf # centos7
vim /etc/sysconfig/i18n # centos6
#把其中的 LANG="en_US.UTF-8" 改为 LANG="zh_CN.UTF-8",然后保存。
source /etc/locale.conf # CentOS7 重新加载该文件使区域语言设置立即生效。
source /etc/sysconfig/i18n # CentOS6 重新加载该文件使区域语言设置立即生效。