如何在 Linux 系统上安装 MicroSoft 字体
how to install MicroSoft fonts for Linux
1. 通用方法 注1 注2
挂载Windows安装盘。
将Windows的字体复制到/usr/share/fonts
:
1 | mkdir /tmp/WindowsFonts |
然后重新生成字体缓存:
1 | sudo fc-cache -f |
2. Ubuntu
从仓库安装微软字体包
1 | sudo apt update |
更新字体缓存
1 | sudo fc-cache -f -v |
3. Arch Linux
从 AUR 安装 3
直接使用
yay -S ttf-ms-win10
会安装失败,需要手动下载源码安装
查阅官方仓库将发现其需要Windows安装文件。
将ttf-ms-win10
包克隆至本地。
1 | git clone https://aur.archlinux.org/ttf-ms-win10.git /tmp/ttf-ms-win10 |
挂载Windows安装盘。
将 install.wim
复制至目录下ttf-ms-win10
:
1 | sudo cp $(find / -name install.wim 2>/dev/null) /tmp/ttf-ms-win10 |
进行安装:
1 | cd /tmp/ttf-ms-win10 |
[补]:直接使用 yay -S ttf-ms-win10
会安装失败的原因:参见Bevan的评论。