一般情况下, 我们有很多工具可以安装字体, 即便在 linux 下, Gnome 等也提供了很多工具来这么做.

不过有时候会有些特殊需求. 比如我们要在某个远程服务器上添加一个字体.

有一些简单的方法可以处理.

首先, 路径.

我们可以在以下几个路径下, 任选一个(考虑好作用域)

  • /usr/share/fonts
  • /usr/share/X11/fonts
  • /usr/local/share/fonts
  • ~/.local/share/fonts
  • ~/.fonts

因为一个 font 有 Regular, Bold, Italic 等若干样式, 它们保存在不同的 ttf 中. 我们可以把这些 ttf 放在一个文件夹下, 整个移入, 或者软链接过去.

然后, 刷新缓存.

执行命令如下:

$ sudo fc-cache -fv
/usr/share/fonts: caching, new cache contents: 0 fonts, 5 dirs
...

最后, 查看字体列表

$ fc-list
Categories: Code

Yu

Ideals are like the stars: we never reach them, but like the mariners of the sea, we chart our course by them.

Leave a Reply

Your email address will not be published. Required fields are marked *