When using the CentOS system, you may encounter an English CentOS system when you install it, in which case installing the CentOS system is the default installation (ie English). After installation, the emergence of a variety of Chinese garbled. So, how do we solve this problem?
First, CentOS system access to g.cn, found in Chinese garbled.
So in the previous way: Yum-y install Fonts-chinese
After the CentOS system is installed, the Chinese font cannot be displayed. I use Gedit edit source code, which is also garbled comments.
Later, finally found the following methods can be resolved, requires two Chinese-supported packages:
fonts-chinese-3.02-12.el5.noarch.rpm
ftp://ftp.muug.mb.ca/mirror/centos/5.4/os/x86_64/CentOS/fonts-chinese-3.02-12.el5.noarch.rpm
fonts-iso8859-2-75dpi-1.0-17.1.noarch.rpm
ftp://ftp.muug.mb.ca/mirror/centos/5.4/os/x86_64/CentOS/fonts-ISO8859-2-75dpi-1.0-17.1.noarch.rpm
One is the Chinese font, one is the font display package.
After downloading, install at the command line:
#rpm-IVH xxxx (xxxx represents the full name of the above two packages, rpm do not know how to use it?)
After the CentOS system installation is complete, reboot can be done.
Second, terminal, gedit display garbled
#vi/etc/sysconfig/i18n
Will lang= "en_US." UTF-8 "
Sysfont= "Latarcyrheb-sun16"
Modify the original content to
Lang= "ZH_CN. GB18030 "
Language= "Zh_CN.GB18030:zh_CN.GB2312:zh_CN"
Supported= "ZH_CN. Utf-8:zh_cn:zh:en_us. Utf-8:en_us:en "
Sysfont= "Lat0-sun16"
Install Chinese fonts with Yum
#yum Install Fonts-chinese.noarch
System-> Logout Logoff
When you log back into the CentOS system, you will find that all interfaces have changed from English to Chinese. Enter the date command test at the terminal
#date
Monday, November 24, 2009 12:07:00 CST
Third, in SSH, Telnet terminal Chinese display garbled solution (CentOS 5.3)
#vi/etc/sysconfig/i18n
Lang= the original content to "en_US." UTF-8 "
Sysfont= "Latarcyrheb-sun16"
Amended to
Lang= "ZH_CN. GB18030 "
Language= "Zh_CN.GB18030:zh_CN.GB2312:zh_CN"
Supported= "ZH_CN. Utf-8:zh_cn:zh:en_us. Utf-8:en_us:en "
Sysfont= "Lat0-sun16"
Install Chinese fonts with Yum
#yum Install Fonts-chinese.noarch
Disconnect ssh, reconnect
Enter the date command test at the terminal
#date
Monday, November 24, 2009 12:09:00 CST
Iv. using Chinese Input method in CentOS system 5.3
My previous method was to install the Penguin version, see the next page. Here, there's a simpler one, just use Yum to install SCIM.
Command Line Input:
#yum Install SCIM
#yum Install Scim-pinyin
Restart X (press Ctrl+alt+backpace) or logout (logout).
OK, you can enter Chinese. CentOS system appears the problem of Chinese garbled so solved.