1

I have ubuntu 11.10 and when I run any package management command in terminal I get this message

E: dpkg was interrupted, you must manually run 'sudo dpkg --configure -a'
to correct the problem. 

What is the problem and how can I solve it?

Tim
  • 32,861
  • 27
  • 118
  • 178
Ax3
  • 41
  • 1
    Welcome to Ask Ubuntu!) It's never safe to publish your email address on an open web site. I've removed it from the post. If you're sure you want it to be publicly visible, you can undo this revision. Note that askubuntu.com can automatically inform you of answers to your question. More information on this can be found here – lumbric Dec 26 '11 at 16:53

1 Answers1

6

The error message usually points to having interrupted a download in the past.

This should be resolved by the following:

sudo dpkg --configure -a
sudo apt-get -f install
sudo apt-get update && sudo apt-get upgrade
fossfreedom
  • 172,746