4

I am getting this dkpg error when I try:

sudo dpkg --configure -a

Unable to find a workaround.

Using Ubuntu 16.04

Zanna
  • 70,465
muchamaze
  • 43
  • 1
  • 3

1 Answers1

5

File sounds corrupted run

sudo rm /var/lib/dpkg/updates/0040
sudo apt-get clean
sudo apt-get update
sudo apt-get install -f
sudo dpkg --configure -a

You can remove any other corrupted files in /var/lib/dpkg/updates/ if needed and re-run those commands.

Post any additional errors you may have

Panther
  • 102,067