This is a small post about dpkg error. Dpkg is a tool used to manage package installation, removing, update of distributions like Debian, Ubuntu. Actually dpkg can be used distributions like Fedora, CentOS, RedHat but their default package manager is rpm.
Error
Here is the problem while install a package with apt-get or dpkg directly the operation is interrupted. After trying again to install a package we get an error like “dpkg was interrupted, you must manually run”

This error can be caused by different problems.
Reconfigure Dpkg
We need to repair dpkg package database in order to resume apt-get update
operation. We can run dpkg to reconfigure the package database like below and correct the problem. We will provide --configure
and -a
option to the dpkg
command like below. This command will regenerate the package database and fix errors. We also need the root privileges to change dpkg database which will be provided with sudo
command like below.
$ sudo dpkg --configure -a

The interrupted package installation with dpkg is completed with success.