Linux Ubuntu 16.04/apt-get 问题

Linux Ubuntu 16.04/apt-get 问题

由于我搞乱了 java 安装,我在 ubuntu 16.04 上安装任何东西时都遇到了问题。以下是我得到的结果——

sudo apt-get -f install htop

Reading package lists... Done Building dependency tree
Reading state information... Done E: The package jre1.8.0-111 needs to be reinstalled, but I can't find an archive for it.

有什么建议么?

答案1

尝试

sudo apt-get install -f

它应该会删除 Java。然后重新安装它您也可以尝试使用 Synaptic(如果您已经安装了它)

sudo synaptic

要不就

sudo apt-get remove --purge *java*

然后重新安装 java

相关内容