Home > Article > Operation and Maintenance > What to do if Chinese garbled characters appear in centos6 system
Question:
The default encoding for Windows is GBK, and the default encoding for Linux is UTF-8. Chinese edited under Windows is displayed as garbled characters under Linux. In order to solve this problem, modify the default encoding of Linux to GBK.
(Recommended tutorial: centos usage tutorial)
Solution:
1. Install the English version. The default character set configuration is:
# cat /etc/sysconfig/i18n LANG="en_US.UTF-8" SYSFONT="latarcyrheb-sun16
2. Change to Chinese character set:
# vi /etc/sysconfig/i18n LANG="zh_CN.GBK" SUPPORTED="zh_CN.UTF-8:zh_CN:zh" SYSFONT="latarcyrheb-sun16"
3. Execute the following command or restart to take effect.
# source /etc/sysconfig/i18n
Related video tutorial sharing: linux video tutorial
The above is the detailed content of What to do if Chinese garbled characters appear in centos6 system. For more information, please follow other related articles on the PHP Chinese website!