我在尝试apt-get update && apt-get upgrade
失败并出现以下错误:
dpkg: error processing systemd-services (--configure):
Package is in a very bad inconsistent state - you should
reinstall it before attempting configuration.
Errors were encountered while processing:
systemd-services
E: Sub-process /usr/bin/dpkg returned an error code (1)
我尝试强制安装 systemd-services,但出现同样的错误
我怎样才能解决这个问题?
答案1
你应该停止强迫事情。dpkg
告诉你包裹在非常糟糕的状态你应该重新安装它. 最好的方法是使用apt-get
:
sudo apt-get clean
sudo apt-get --reinstall install systemd-services
第一个命令将清除包缓存,因此当您运行下一个命令时,它会再次从服务器下载该包。