也無法升級或安裝任何更新或某些軟體包

也無法升級或安裝任何更新或某些軟體包

嘿,我在升級時遇到了這個錯誤。我不知道我哪裡搞砸了。

每當我嘗試升級或安裝,甚至嘗試配置 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

相關內容