我尝试ttf-mscorefonts-installer
从终端安装,因为我想使用Wine。
看起来有点像在Comic Sans上失败了。查看它只会显示另一种字体的文本。
然后弹出此失败的额外数据文件下载窗口。
我尝试从终端上卸载ttf-mscorefonts-installer,然后按照此答案中的说明进行重新安装。这次,它无法获取第一个字体andale32.exe。我收到一条错误消息,内容为:invalid content-range header
。
我该怎么办?
我尝试ttf-mscorefonts-installer
从终端安装,因为我想使用Wine。
看起来有点像在Comic Sans上失败了。查看它只会显示另一种字体的文本。
然后弹出此失败的额外数据文件下载窗口。
我尝试从终端上卸载ttf-mscorefonts-installer,然后按照此答案中的说明进行重新安装。这次,它无法获取第一个字体andale32.exe。我收到一条错误消息,内容为:invalid content-range header
。
我该怎么办?
Answers:
同样的问题,找到了解决方案
安装软件包ttf-mscorefonts-installer
,稍后我们需要软件包中的一些东西
sudo apt-get install ttf-mscorefonts-installer
下载并安装字体
TMP=$(mktemp -d)
cd "$TMP"
awk '/Url/ {system("wget "$2)}' /usr/share/package-data-downloads/ttf-mscorefonts-installer
sudo /usr/lib/msttcorefonts/update-ms-fonts "$TMP"/*
避免将来出现错误信息
sudo touch /var/lib/update-notifier/package-data-downloads/ttf-mscorefonts-installer
家政
cd ..
rm -r "$TMP"
问题解决了;)
可以使用Debian存储库(可靠)通过以下方式实现直接选项的变通方法:
sudo apt-get -y remove --purge ttf-mscorefonts-installer
wget http://ftp.de.debian.org/debian/pool/contrib/m/msttcorefonts/ttf-mscorefonts-installer_3.6_all.deb -P ~/Downloads
sudo apt install ~/Downloads/ttf-mscorefonts-installer_3.6_all.deb
希望Ubuntu repo版本将很快修复。
对于全新安装的Ubuntu 64位15.04,在安装过程中还安装了所有其他功能,Wine在过程中停止了一半,并将其连接到mscorefonts,上面给出了重复的错误消息。等待了几个小时后,我退出了软件中心,然后重新启动。据我所知,以下几行内容彻底解决了问题,并正确设置了mscorefonts。在下面给出解释。
sudo apt-get update --fix-missing
sudo dpkg --configure -a
cd
sudo wget downloads.sourceforge.net/corefonts/andale32.exe
sudo wine andale32
rm andale32.exe
第一行告诉您必须执行第二行(dpkg)才能完成酒的安装。然后,当发生这种情况时,它会告知andale32.exe与预期不符(以散列值表示,这可能是指该版本的早期版本)。假设没问题,则可以手动安装它,在这种情况下,可以在酒前运行“ sudo”,这可能不是必需的。在最后一行和等待之后,是否接受字体的问题出现在一个漂亮的窗口中。--fix-missing的重复报告不需要其他命令。
要解决这个问题请尝试删除并重新安装ttf-mscorefonts-installer
从终端唯一的-有一些提示,需要加以回答,而不是总是在图形窗口得当:
用alt+ ctrl+ 打开终端t
输入以下命令
sudo apt-get remove --purge ttf-mscorefonts-installer
sudo apt-get install ttf-mscorefonts-installer