CentOS8中文亂碼問題

獵手家園發表於2021-05-13

1、首先檢視你的語言是什麼?

[root@centos8 ~]$ echo $LANG

------結果-------------------
en_US.UTF-8


[root@centos8 ~]$ localectl status

------結果-------------------
System Locale: LANG=en_US.UTF-8
       VC Keymap: us
      X11 Layout: us

 

2、當前系統為英文,所以需要安裝中文包

3、查詢中文包

[root@centos8 ~]$ yum search Chinese

 

4、安裝中文包

[root@centos8 ~]$ dnf install langpacks-zh_CN

 

5、修改本地語文環境

[root@centos8 ~]$ vim /etc/locale.conf

LANG=“zh_CN.UTF-8”

 

6、使之生效

[root@centos8 ~]$ source /etc/locale.conf

 

中文亂碼問題解決!

 

相關文章