ubuntu提示E: Sub-process /usr/bin/dpkg returned an error code (1)

Solution:

Now renamed folder info

sudo mv /var/lib/dpkg/info /var/lib/dpkg/info.bk

Create a new folder info

sudo mkdir /var/lib/dpkg/info

Installation repair

sudo apt-get update

sudo apt-get install -f

After execution of the step of the operation, generate some files in the info folder, these files will now move all info.bk folder

sudo mv /var/lib/dpkg/info/* /var/lib/dpkg/info.bk

His own new info folder deleted

sudo rm -rf /var/lib/dpkg/info

Restore the original info folder, change the name

sudo mv /var/lib/dpkg/info.bk /var/lib/dpkg/info

There, we've successfully installed

Guess you like

Origin www.cnblogs.com/wanzixiang163/p/11872736.html