如何增加Debian的字体?

Debian-Like

1 前言

一个问题,一篇文章,一出故事。
笔者希望安装Windows的字体库到Debian中使用,于是整理此文。

2 最佳实践

2.1 安装字体相关包

apt install -y fontconfig

2.2 确认字体配置目录

grep "/usr/share/fonts" /etc/fonts/fonts.conf

确保包含如下配置,

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

2.3 上传字体

mkdir -p /usr/share/fonts/windows
cp *.{ttf,TTF} /usr/share/fonts/windows
chown root:root /usr/share/fonts/windows/*.{ttf,TTF}
chmod 755 /usr/share/fonts/windows

2.4 刷新系统字体缓存

fc-cache -f -v

参阅文档
=====================
https://manpages.debian.org/testing/fontconfig-config/fonts-conf.5.en.html

https://manpages.debian.org/testing/fontconfig/fc-cache.1.en.html

没有评论

发表回复

Debian-Like
如何配置Ubuntu的默认桌面?

1 前言 本章针对Ubuntu的系统环境配置VNC,如有需要请参阅下文。 2 实践部分 2.1 安装 …

Debian-Like
如何部署Debian sublime-text平替notepad++

1 前言 一个问题,一篇文章,一出故事。 办公系统环境早已放弃使用Windows客户端系统,因此需要 …

Debian-Like
如何部署Ubuntu Apache Directory Studio?

1 前言 一个问题,一篇文章,一出故事。 由于笔者需要访问LDAP服务器,所以需要安装一个LDAP的 …