“有软件更新”,但我无法安装

“有软件更新”,但我无法安装

启动后有时会显示此消息:

这显然让我相信某个地方有可用的更新,但点击它没有任何反应,我在软件更新程序中也找不到任何更新。如果它至少让我知道如何安装它们,那将有所帮助。

我如何/在哪里安装这些更新,如果这是一个错误,我该如何修复它?

答案1

我建议清理您的软件包并通过终端运行更新。首先:

sudo apt-get clean

然后我有一个很棒的代码给你——我已经运行了 6 年了,从 12.04 开始,现在(仍然)是 16.04 LTS,我对它非常满意:

sudo apt-get -y update; sudo apt-get -y upgrade; sudo apt-get -y autoremove

解释:

 -y:         says "yes" to the question "are you shure you want..." 
 update:     prepares the system packages upgrade 
 upgrade:    does the packages update (no deleting or installing of new packages)
 autoremove: removes packages what are no longer needed
 ;         : compared to && it will do the following command even the first command would not execute completely  

答案2

额外和过期的通知消息是漏洞。此问题已在开发中修复,Ubuntu 16.04 的更新将很快发布,大概是本月晚些时候(2016 年 6 月)。

尝试运行sudo apt update && sudo apt dist-upgrade

相关内容