dpkg was interrupted, you must manually run 'sudo dpkg --configure -a'_
dpkg was interrupted, you must manually run 'sudo dpkg --con
When Ubuntu throws dpkg was interrupted, you must manually run 'sudo dpkg --configure -a', the system diagnostics have flagged a condition known as "dpkg was interrupted, you must manually run 'sudo dpkg --con". Most fixes for this error are straightforward and don't require wiping your drive.
What Actually Happened
Package manager encountered: a previous install was cut off mid-way, leaving a package in a half-configured state.
Symptoms
APT command failed: 'dpkg was interrupted, you must manually run 'sudo dpkg --configure -a''
Common Causes
- Package state: a previous install was cut off mid-way, leaving a package in a half-configured state
How to Fix It
-
01
Refresh package index:
sudo apt update -
02
Fix broken dependencies:
sudo apt --fix-broken install -
03
Configure pending packages:
sudo dpkg --configure -a
System Administrator Emergency Kit
Stop searching for syntax under pressure. Get 100+ verified, battle-tested emergency recovery commands for Windows & Linux in one printable PDF guide.
Root Cause Breakdown
dpkg/APT constraint resolver aborted transaction.
Should You Worry?
Safe. Package manager halts to prevent further corruption.
Power-User Tip
Always run sudo apt update before attempting repair commands.
Always free