Dpkg Was Interrupted You Must Manually Run Sudo Dpkg Configure To Correct The Problem Jun 2026
sudo dpkg --remove --force-remove-reinstreq <package-name> sudo apt update sudo apt install <package-name>
sudo dpkg --configure -a
If you are still seeing the error after trying all the steps above, a specific package's installation script is fundamentally broken. You will need to wipe that specific package out of the internal status tracking database. Open the status file in a text editor: sudo nano /var/lib/dpkg/status Use code with caution. In most cases, the solution is exactly what
In most cases, the solution is exactly what the error message suggests. Open a terminal and run:
This command attempts to correct missing dependencies and broken packages automatically. It simply completes pending configuration tasks
Run these commands to safely remove old locks and update your package lists:
Alternatively, use pkill :
No. It simply completes pending configuration tasks. It does not delete user files. However, if a package’s post-installation script has a bug, it might fail again—but that won’t delete your data.
Sometimes, a package configuration fails because its required helper packages (dependencies) are missing. Run this command to force the Advanced Package Tool ( apt ) to find and install missing parts: sudo apt-get install -f Use code with caution. Advanced Troubleshooting: The Nuclear Option or dpkg commands.
– Avoid Ctrl+C during apt install , apt upgrade , or dpkg commands. Be patient.
sudo rm /var/lib/dpkg/lock-frontend sudo rm /var/lib/dpkg/lock sudo rm /var/cache/apt/archives/lock sudo rm /var/lib/apt/lists/lock