如何在 Debian Wheezy 中安装 Arial 字体或任何 true type 字体?

Fab*_*cio 5 linux font debian-wheezy

我在Linux服务器(Wheezy服务器版本)中部署了一个网页,该网页使用Arial字体生成一个PDF文件。我看过:

/usr/share/fonts/truetype/ 
Run Code Online (Sandbox Code Playgroud)

那里没有找到 Arial 字体,只有:

DejaVuSans-Bold.ttf
DejaVuSansMono-Bold.ttf
DejaVuSansMono.ttf
DejaVuSans.ttf
DejaVuSerif-Bold.ttf
DejaVuSerif.ttf
Run Code Online (Sandbox Code Playgroud)

如何安装Arial字体?

Fab*_*cio 4

解决问题:

wget http://ftp.br.debian.org/debian/pool/contrib/m/msttcorefonts/ttf-mscorefonts-installer_3.6_all.deb

#Dependence for dpkg 
apt-get install cabextract 

#Install fonts by dpkg
dpkg -i ttf-mscorefonts-installer_3.6_all.deb

reboot
Run Code Online (Sandbox Code Playgroud)

此后报告工作正常。

  • 不过,按照 https://wiki.debian.org/SourcesList#Example_sources.list 将 contrib 添加到常规源确实应该有效 (3认同)