web-dev-qa-db-fra.com

"Le sous-processus / usr / bin / dpkg a renvoyé un code d'erreur" Après l'installation de kubuntu-desktop

Je ne peux rien installer via le terminal. Cela a commencé lorsque j'ai installé KDE et a échoué (il affiche un écran noir à la connexion). Cela ne me permettra pas non plus de supprimer KDE. "apt-get -f install" ne fonctionnera pas non plus.

Voici la sortie du terminal après avoir exécuté "Sudo apt-get install gnome-Shell":

Leyendo lista de paquetes... Hecho
Creando árbol de dependencias       
Leyendo la información de estado... Hecho
Tal vez quiera ejecutar «apt-get -f install» para corregirlo:
Los siguientes paquetes tienen dependencias incumplidas:
 gnome-Shell : Depende: gir1.2-clutter-1.0 (>= 1.22) pero no va a instalarse
               Depende: gir1.2-mutter-3.0 (>= 3.18.1) pero no va a instalarse
               Depende: gir1.2-networkmanager-1.0 pero no va a instalarse
               Depende: gir1.2-telepathyglib-0.12 pero no va a instalarse
               Depende: libgjs0-libmozjs-24-0
               Depende: libgjs0e (>= 1.44.0) pero no va a instalarse
               Depende: libmozjs-24-0v5 pero no va a instalarse
               Depende: gir1.2-gdm-1.0 (>= 3.18.2) pero no va a instalarse
               Depende: gir1.2-accountsservice-1.0
               Depende: gir1.2-caribou-1.0 (>= 0.4.8) pero no va a instalarse
               Depende: gir1.2-gcr-3 (>= 3.7.5) pero no va a instalarse
               Depende: gir1.2-gkbd-3.0 pero no va a instalarse
               Depende: gir1.2-gnomebluetooth-1.0 (>= 3.12.0) pero no va a instalarse
               Depende: gir1.2-gweather-3.0 pero no va a instalarse
               Depende: gir1.2-nmgtk-1.0 (>= 0.9.8) pero no va a instalarse
               Depende: gir1.2-polkit-1.0 pero no va a instalarse
               Depende: gir1.2-telepathylogger-0.2 (>= 0.8.0) pero no va a instalarse
               Depende: gir1.2-upowerglib-1.0 (>= 0.99) pero no va a instalarse
               Depende: gjs (>= 1.39.0) pero no va a instalarse
               Depende: gnome-session pero no va a instalarse
               Depende: gnome-backgrounds (>= 3.13.90) pero no va a instalarse
               Depende: mutter (>= 3.18.1) pero no va a instalarse
               Recomienda: gnome-contacts pero no va a instalarse
               Recomienda: gnome-control-center pero no va a instalarse
               Recomienda: gdm3 (>= 3.10.0.1-3~) pero no va a instalarse
 kde-telepathy-minimal : Depende: kde-config-telepathy-accounts (>= 15.04.0) pero no va a instalarse
E: Dependencias incumplidas. Intente «apt-get -f install» sin paquetes (o especifique una solución).

Traduction (certaines choses peuvent être légèrement erronées):

Reading package list... Done
Creating dependencies tree      
Reading status info... Done
You might want to run «apt-get -f install» to fix:
The next packages have unmet dependencies:
 gnome-Shell : Depends on: gir1.2-clutter-1.0 (>= 1.22) but it's not going to be installed
               Depends on: gir1.2-mutter-3.0 (>= 3.18.1) but it's not going to be installed
               Depends on: gir1.2-networkmanager-1.0 but it's not going to be installed
               Depends on: gir1.2-telepathyglib-0.12 but it's not going to be installed
               Depends on: libgjs0-libmozjs-24-0
               Depends on: libgjs0e (>= 1.44.0) but it's not going to be installed
               Depends on: libmozjs-24-0v5 but it's not going to be installed
               Depends on: gir1.2-gdm-1.0 (>= 3.18.2) but it's not going to be installed
               Depends on: gir1.2-accountsservice-1.0
               Depends on: gir1.2-caribou-1.0 (>= 0.4.8) but it's not going to be installed
               Depends on: gir1.2-gcr-3 (>= 3.7.5) but it's not going to be installed
               Depends on: gir1.2-gkbd-3.0 but it's not going to be installed
               Depends on: gir1.2-gnomebluetooth-1.0 (>= 3.12.0) but it's not going to be installed
               Depends on: gir1.2-gweather-3.0 but it's not going to be installed
               Depends on: gir1.2-nmgtk-1.0 (>= 0.9.8) but it's not going to be installed
               Depends on: gir1.2-polkit-1.0 but it's not going to be installed
               Depends on: gir1.2-telepathylogger-0.2 (>= 0.8.0) but it's not going to be installed
               Depends on: gir1.2-upowerglib-1.0 (>= 0.99) but it's not going to be installed
               Depends on: gjs (>= 1.39.0) but it's not going to be installed
               Depends on: gnome-session but it's not going to be installed
               Depends on: gnome-backgrounds (>= 3.13.90) but it's not going to be installed
               Depends on: mutter (>= 3.18.1) but it's not going to be installed
               Recommends: gnome-contacts but it's not going to be installed
               Recommends: gnome-control-center but it's not going to be installed
               Recommends: gdm3 (>= 3.10.0.1-3~) but it's not going to be installed
 kde-telepathy-minimal : Depends: kde-config-telepathy-accounts (>= 15.04.0) but it's not going to be installed
E: Unmet dependencies. Try «apt-get -f install» without packages (or specify a solution).
1
Nacho Garcia

Assurez-vous de courir

Sudo apt-get update
Sudo apt-get dist-upgrade

pour garder vos packages à jour. Essayer

Sudo apt-get purge gnome-Shell

pour supprimer le package avec tous les fichiers joints, puis utiliser

Sudo apt-get install -f gnome-Shell

Pour tout réinstaller.

0
ADDB