I am trying to run following command
$ sudo apt-get install cron
but it gives following error
E: dpkg was interrupted,
I am trying to run following command
$ sudo apt-get install cron
but it gives following error
E: dpkg was interrupted,
The solution is simple and part of the full error message
E: dpkg was interrupted, you must manually run 'dpkg --configure -a' to correct the problem.
Therefore
sudo dpkg --configure -a
and then
sudo apt-get install cron
sudo dpkg --configure -a
– Liso Aug 18 '15 at 07:11