我目前正在尝试在Debian Stretch上安装一些字体
g@i-3-nstance:~$ sudo apt-get install ttf-mscorefonts-installer
Reading package lists... Done
Building dependency tree
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:
The following packages have unmet dependencies:
ttf-mscorefonts-installer : Depends: update-notifier-common (>= 0.119ubuntu2) but it is not installable
E: Unable to correct problems, you have held broken packages.
g@i-3-nstance:~$...but看起来这个包已经被删除了。
https://github.com/plone/ansible-playbook/issues/98
https://github.com/jnv/ansible-role-unattended-upgrades/issues/6#issuecomment-93569818
有什么变通办法吗?
发布于 2018-08-07 21:27:15
更新:我在此基础上进行了手动安装:https://askubuntu.com/a/861476
sudo apt-get install cabextract libmspack0
wget http://ftp.de.debian.org/debian/pool/contrib/m/msttcorefonts/ttf-mscorefonts-installer_3.6_all.deb
sudo dpkg -i ttf-mscorefonts-installer_3.6_all.deb发布于 2018-08-07 21:43:17
apt-get尝试安装更新程序包来自Ubuntu存储库,而不是来自Debian存储库(请注意,它依赖于更新通告程序-公共>= 0.119ubuntu2).
您可能在/etc/apt/sources.list中混合了Debian和Ubuntu存储库。
https://stackoverflow.com/questions/51727811
复制相似问题