libc:amd64 ist halb installiert und verhindert die Aktualisierung oder Installation anderer Dinge

libc:amd64 ist halb installiert und verhindert die Aktualisierung oder Installation anderer Dinge

Ich habe nach einem unterbrochenen Upgrade einige Probleme. Nachdem ich das getan hatte sudo apt update, lief ich sudo apt upgradeund bekam:

dpkg: error processing package libc6:amd64 (--configure):
 package libc6:amd64 is not ready for configuration
 cannot configure (current status 'half-installed')

Also rannte ich

sudo apt-get --fix-broken install

und die Ausgabe war:

dpkg: error processing package libc6:amd64 (--configure):
 package libc6:amd64 is not ready for configuration
 cannot configure (current status 'half-installed')

Beim Versuch, es auszuführen, sudo apt install --reinstall libc6erhalte ich Folgendes:

dpkg: error processing package libc6:amd64 (--configure):
 package libc6:amd64 is not ready for configuration
 cannot configure (current status 'half-installed')`

Beim Versuchen sudo apt install --reinstall libc-binbekomme ich:

You might want to run 'apt --fix-broken install' to correct these.
The following packages have unmet dependencies:
 locales : Depends: libc-bin (> 2.33)
E: Unmet dependencies. Try 'apt --fix-broken install' with no packages (or specify a solution).

Ich habe also die „neueste Version“, aber es wird eine neuere Version benötigt?

Antwort1

Ich hatte ein ähnliches Problem und habe es folgendermaßen gelöst:

sudo dpkg -i /var/cache/apt/archives/libc6_2.32-0ubuntu3_amd64.deb
sudo apt --fix-broken install

verwandte Informationen