标签:
1 下载字体
?
可以在网上下载,也可以在 windows 目录下(C:\Windows\Fonts)找到对应字体,这里是从另一套系统上 copy simsun.ttf 文件。
?
2 查看当前系统中已安装的中文字体
?
?
[root@redhat6 ~]# fc-list :lang=zh
?
?
备注:这个命令显示已安装的中文字体,从输出来看,宋体没有安装。
?
?
?
3 复制 simsun.ttf 字体文件
?
[root@redhat6 my_fonts]# mkdir -p /usr/share/fonts/truetype
并从另一台已安装 simsun.ttf 字体的系统复制这个文件到这个目录。
?
?
?
4 生成字体索引信息
?
[root@redhat6 fonts]# cd truetype/
?
[root@redhat6 my_fonts]# mkfontscale
?
[root@redhat6 my_fonts]# mkfontdir
?
[root@redhat6 my_fonts]# ll
?
total 10276
?
-rw-r--r--. 1 root root 189 Jan 31 22:33 fonts.dir
?
-rw-r--r--. 1 root root 189 Jan 31 22:33 fonts.scale
?
-rw-r--r--. 1 root root 10512288 Jan 31 22:33 simsun.ttf
?
备注:生成相应的 fonts.scale 和 fonts.dir 文件。
?
?
?
5 再次查看已安装的字体
?
[root@redhat6 my_fonts]# fc-list :lang=zh
?
AR PL UMing TW:style=Light
?
AR PL UMing HK:style=LightNSimSun,新宋体:style=Regular
?
AR PL UMing CN:style=LightSimSun,宋体:style=Regular
?
AR PL UKai TW MBE:style=BookAR PL UKai CN:style=Book
?
AR PL UKai HK:style=Book
?
备注:此时宋体字体已安装完成,也可以在图形化界面 "System --> Preferences --> Appearance --> fonts " 面板查看已安装的字体。
CentOS6.5上增加中文字体库,确保前端WEB可以正常显示
标签:
原文地址:http://www.cnblogs.com/appresearch/p/5504519.html