admin管理员组

文章数量:1594755

 

1、fc -list查看字体库

发现没有安装

2、yum -y install fontconfig安装

3、安装好后/usr/share目录下多两个目录fonts和fontconfig

4、首先在/usr/shared/fonts目录下新建一个目录chinese

5、到C:\Windows\Fonts目录下上传你需要的字体到/usr/shared/fonts/chinese目录下

本处需要上传的是simsun.ttf (宋体)、simheittf.ttf (黑体)

附下载链接:

https://download.csdn/download/weixin_41846320/10862472

6、修改chinese权限

chmod -R 755 /usr/share/fonts/chinese

7、接下来需要安装ttmkfdir来搜索目录中所有的字体信息,并汇总生成fonts.scale文件,输入命令:

yum -y install ttmkfdir

8、最后一步就是修改字体配置文件了,首先通过编辑器打开配置文件:

vi /etc/fonts/fonts.conf

 

<!-- Font directory list -->

        <dir>/usr/share/fonts</dir>
        <dir>/usr/share/X11/fonts/Type1</dir> <dir>/usr/share/X11/fonts/TTF</dir> <dir>/usr/local/share/fonts</dir>
        <dir prefix="xdg">fonts</dir>
        <dir>/usr/share/fonts/chinese</dir>
        <!-- the following element will be removed in the future -->
        <dir>~/.fonts</dir>

9、fc-cache 刷新

10、fc-list 可以看到刚刚已安装的字体了

本文标签: 文件字体库CENTOSLinuxTTF