您的位置:首页 > 运维架构 > Linux

centos 中文字体解决方案

2016-04-18 13:53 579 查看
在linux下添加支持中文字体,中文字体的获取可以从windows平台的字体库中找到,windows下的C:\windows\fonts下面有你想要的字体,比如simsun.ttc<简体中文>等字体。

centos下的字体库存放位置:/usr/share/fonts

 

具体操作步骤:

================================

1. 在/usr/share/fonts/chinese文件夹下创建一个文件夹(windows)

[root@localhost ~]# mkdir /usr/share/fonts/chinese/windows

2. 把从windows中找出的字体复制到windows文件夹中,再为windows文件夹更改权限

[root@localhost ~]# chmod -R 755 /usr/share/fonts/chinese/windows

3. 在字体目录中执行ttmkfdir命令

[root@localhost windows]# ttmkfdir -e /usr/share/X11/fonts/encodings/encodings.dir

4. 更改fonts.conf文件

[root@localhost ~]#vi /etc/fonts/fonts.conf

然后添加如下一行;

/usr/share/fonts/chinese/windows

添加位置如下:
<!-- Font directory list -->

  <dir>/usr/share/fonts</dir>

#新加内容

  <dir>/usr/share/fonts/chinese/windows</dir>

5. 重启xfs服务器

[root@localhost ~]# service xfs restart

6. 查看字体有没有添加成功

[root@localhost ~]# fc-list :lang=zh-cn
Microsoft YaHei UI Light:style=Regular
Microsoft YaHei,微软雅黑:style=Bold,Negreta,tučné,fed,Fett,Έντονα,Negrita,Lihavoitu,Gras,Félkövér,Grassetto,Vet,Halvfet,Pogrubiony,Negrito,Полужирный,Fet,Kalın,Krepko,Lodia
STXihei,华文细黑:style=Regular
LiSu,隶书:style=Regular
SimSun,宋体:style=Regular,常规
STKaiti,华文楷体:style=Regular

 

至此,在linux添加支持中文字体成功
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: