升级到 ubuntu 16.04

升级到 ubuntu 16.04

大家好,我想将我的 ubuntu 操作系统从 15.10 升级到 16.04,但是当它刚开始升级时,它会显示此消息“apt(> = 1.0.10.2ubuntu2)”,您能帮帮我吗?

答案1

尝试这个:

打开终端,

Ctrl++AltT

运行:

exec sudo -i
apt-get update
apt-get dist-upgrade
apt-get -f install
apt-get -m install
apt-get install --reinstall apt
do-release-upgrade

答案2

apt 版本 1.0.10.2ubuntu2 是常规 Wily 的一部分。我假设您有一段时间没有更新您的发行版了。

sudo apt-get update && sudo apt-get upgrade在尝试升级到新版本之前,请确保 /etc/apt/sources.list 中拥有有效的 Wily 存储库。

这应该会安装所需的 apt 版本。

如果你的仓库不再工作,你可以使用Ubuntu 源列表生成器

我会选择“主要 - 官方支持的软件”、“安全 - 重要安全更新”和“更新 - 推荐更新”。

相关内容