linux添加字体

最近将一个windows段web项目移到Linux端,出现了种种问题,也都一一解决,需要记下来的大概就是字体这一项了。

查看/etc/fonts/fonts.conf文件,查找<!– Font directory list –>


<!-- 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>~/.fonts</dir>

在/usr/share/fonts/下新建一个目录,将字体放入

mkdir -p /usr/share/fonts/chinese/TrueType

cp 字体文件  /usr/share/fonts/chinese/TrueType/

如果不生效,执行sudo fc-cache -fv命令即可

发表评论

您的邮箱地址不会被公开。 必填项已用 * 标注