重新安装所有默认字体

重新安装所有默认字体

我尝试删除非西方字体(很多 Noto 字体),但最终删除了太多字体。我想进行某种“恢复出厂设置”。我已经尝试过,sudo apt install ttf-mscorefonts-installer但它已经安装好了。

我想我可能会启动apt install然后显示字体列表,但要做到这一点,我需要一个Ubuntu 中默认安装的字体列表但我还没有找到。任何建议都值得赞赏。

答案1

要查看 Ubuntu 桌面默认安装中安装的字体包,您可以查看桌面元包的依赖项(默认情况下)ubuntu-desktop,或者ubuntu-desktop-minimal

apt-cache depends ubuntu-desktop | grep fonts-
  Depends: fonts-dejavu-core
  Depends: fonts-freefont-ttf
  Recommends: fonts-indic
  Recommends: fonts-kacst-one
  Recommends: fonts-khmeros-core
  Recommends: fonts-lao
  Recommends: fonts-liberation
  Recommends: fonts-liberation2
  Recommends: fonts-lklug-sinhala
  Recommends: fonts-noto-cjk
  Recommends: fonts-noto-color-emoji
  Recommends: fonts-opensymbol
  Recommends: fonts-sil-abyssinica
  Recommends: fonts-sil-padauk
  Recommends: fonts-thai-tlwg
  Recommends: fonts-tibetan-machine
  Recommends: fonts-ubuntu

依赖项被视为桌面环境的核心基本字体,而推荐包则是建议但可选的。Ubuntu 默认配置为安装推荐包。

命令

sudo apt install --reinstall ubuntu-desktop

可以自动重新安装您删除的任何字体,但它也会安装您可能已删除的任何其他默认包。

相关内容