无法升级或安装任何更新或某些软件包

无法升级或安装任何更新或某些软件包

嘿,我在升级时遇到了这个错误。我不知道我哪里搞错了。

每当我尝试升级、安装,甚至尝试配置 dpkg 时,都会出现此错误。

我面临这个问题两周以来在 StackExchange 和 UbuntuForum 上搜索了很多之后,我在这里发布了这个问题。

请帮忙

我目前Ubuntu 18.04.03 LTS

divyang@divyang:~$ sudo apt-get upgrade 
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Calculating upgrade... Done
The following packages were automatically installed and are no longer required:
  linux-headers-4.15.0-55 linux-headers-4.15.0-55-generic
  linux-headers-4.18.0-15 linux-headers-4.18.0-15-generic
  linux-image-4.15.0-55-generic linux-image-4.18.0-15-generic
  linux-modules-4.15.0-55-generic linux-modules-4.18.0-15-generic
  linux-modules-extra-4.15.0-55-generic linux-modules-extra-4.18.0-15-generic
Use 'sudo apt autoremove' to remove them.
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
1 not fully installed or removed.
Need to get 0 B/321 kB of archives.
After this operation, 0 B of additional disk space will be used.
Do you want to continue? [Y/n] y
dpkg: error processing package gvfs-backends (--configure):
 package is in a very bad inconsistent state; you should
 reinstall it before attempting configuration
Errors were encountered while processing:
 gvfs-backends
E: Sub-process /usr/bin/dpkg returned an error code (1)
divyang@divyang:~$ sudo dpkg --configure -a
dpkg: error processing package gvfs-backends (--configure):
 package is in a very bad inconsistent state; you should
 reinstall it before attempting configuration
Errors were encountered while processing:
 gvfs-backends

提前致谢 :)

答案1

您应该先尝试卸载包,然后尝试再次安装它。

sudo apt remove --purge gvfs-backends; sudo apt install gvfs-backends

然后进行升级:

sudo apt upgrade

相关内容