该软件包ttf-mscorefonts-installer
在更新管理器中显示为已下载但未安装。运行时,sudo apt-get remove ttf-mscorefonts-installer
我收到消息
dpkg: warning: there's no installed package matching ttf-mscorefonts-installer:amd64
我无法取消选中更新管理器界面中 ttf-mscorefonts-installer 旁边的复选框,也无法安装任何其他更新,因为我收到了错误消息
需要安装不受信任的软件包
该操作将需要安装来自未经认证来源的软件包。
我该如何摆脱它ttf-mscorefonts-installer
才能不再引发问题?
答案1
首先尝试这个 ->
sudo apt-get update
sudo apt-get -f install
如果此方法不能解决问题,请尝试使用以下命令删除该包
sudo dpkg -r ttf-mscorefonts-installer
希望它会有所帮助。
答案2
尝试
sudo apt-get remove --purge ttf-mscorefonts-installer
编辑:remove --purge 相当于 purge 命令,它会将配置文件与包一起删除。
有更多信息这里
答案3
我遇到了同样的问题,ttf-mscorefonts-installer 卡在半安装状态。
我可以使用dpkg
以下选项将其删除--force-all
:
sudo dpkg --remove --force-all ttf-mscorefonts-installer
进而dpkg --purge
:
sudo dpkg --purge --force-all ttf-mscorefonts-installer