Debian最小安装,默认语言编码en_US.UTF-8。
# apt-get install x-window-system-core
# apt-get install gnome-core
# Xorg -configure
将自动生成的xorg.conf.new改名后复制到/etc/X11,覆盖原有的xorg.conf。
# cp xorg.conf.new /etc/X11/xorg.conf
如果已经安装locale,则跳过。
# apt-get install locales
# dpkg-reconfigure locales
选上zh_CN.UTF-8或者zh_CN.GBK。
# locale -a
# cd /usr/share/fonts/truetype/
# mkdir msyh
# cd msyh
# cp /YaHei.Consolas.1.11b.ttf .
X环境中,只要将字体放到合适的目录,fontconfig会自动管理。
1、将字体放到正确的位置。例如,/usr/share/fonts/truetype/。
2、不同类的字体放到不同的文件夹。这点很关键!!!例如,simsun.ttf放到simsun,msyh.ttf和msyhbd.ttf放到yahei。
# vi /etc/X11/xinit/xinitrc
增加下面内容
LANGUAGE=zh_CN.UTF-8
LANG=zh_CN.UTF-8
LC_ALL=zh_CN.UTF-8
export LANGUAGE LANG LC_ALL
重启X。
雅黑字体和Consolas的混合字体效果非常不错。