在 AWS ec2 实例上运行的 18.04 上升级软件包会导致错误

在 AWS ec2 实例上运行的 18.04 上升级软件包会导致错误

尝试升级在 AWS ec2 实例上运行的 18.04 上的软件包并出现以下错误。

The package linux-aws-5.4-headers-5.4.0-1030 needs to be reinstalled, but I can't find an archive for it.

我尝试过apt dist-upgrade和。都会导致上述相同的错误。该软件包apt-get install --fix-missing似乎没有列在dpkg --configure -alinux-aws-5.4-headers-5.4.0-103018.04 软件包

在此先感谢您对解决该问题提供的任何帮助。

答案1

解决了这个问题。按顺序运行了下面的操作并解决了问题。

sudo dpkg --remove --force-remove-reinstreq linux-aws-5.4-headers-5.4.0-1030
sudo apt-get update
sudo apt-get upgrade (this will throw an unmet dependencies error)
sudo apt --fix-broken install

相关内容