Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
不小心安装了一些东西,在安装过程中坏了,这很好,因为我得到了错误的包。
不幸的是,它像其他人所经历的那样损坏了 apt-get。我已经看到了很多方法来继续损坏的安装,但就我而言,我不想继续安装,而只是删除有问题的安装。
有什么建议么?
似乎您可以使用命令实现此目的
$ apt-get remove --fix-broken <<PACKAGENAME>>
<<PACKAGENAME>>导致破损的包裹在哪里。这里的关键是remove,而所有继续安装的解决方案都有install。
<<PACKAGENAME>>
remove
install
上面提到我正在安装中途,因此删除它(使用此标志)就像一个魅力一样删除它。如果您没有该标志,它不会将其识别为已安装,这就是我之前遇到的问题。