Troubleshooting / symptôme

apt/dpkg indicates that a facility has been interrupted

APT refuses to continue because dpkg has been interrupted or a partially configured state remains.

⌚ About 3 min read
View my favorites
Real-world problem · V2

Quick troubleshooting view

What you are seeing

APT refuses to continue because dpkg has been interrupted or a partially configured state remains.

Likely causes
  1. stop or reboot during installation
  2. concurrent apt process
  3. broken package
First checks
  1. Checking processes
  2. Control the space
  3. Finish Configuration
Recommended actions
  1. let the active process be completed
  2. free from space if necessary
  3. complete the dpkg configuration
Start Symptom → Cause →
Linux / DebianIntermediate.

APT refuses to continue because dpkg has been interrupted or a partially configured state remains.

Important: relevez toujours le message d’erreur exact et l’heure du problème avant de modifier la configuration. Les actions proposées doivent être adaptées à votre environnement.

Causes probables

  • stop or reboot during installation
  • concurrent apt process
  • broken package
  • insufficient disk space

Diagnostic étape par étape

  1. 1

    Checking processes

    S, ensure that no legitimate apt/dpkg is still active.

  2. 2

    Control the space

    Check /, /var and inodes.

  3. 3

    Finish Configuration

    Run dpkg --configure -a after eliminating causes.

  4. 4

    Repair dependencies

    Use apt -f install if necessary.

Commands utiles

ps aux | grep -E 'apt|dpkg'
df -h
df -i
sudo dpkg --configure -a
sudo apt -f install

Solutions possibles

  • let the active process be completed
  • free from space if necessary
  • complete the dpkg configuration
  • correct the wrong package before resuming updates
Quand escalader ?

Escalader if dpkg still fails on the same critical system package or if the file system has errors.

♡ 0