Impossible d'installer kubuntu-Desktop dans Ubuntu 16.04 Lts

13

L'extrait suivant est ce que j'avais l'habitude d'installer kubuntu-desktopdansubuntu-16.04 LTS

sudo apt-get install kubuntu-desktop

Vous avez un message d'erreur,

kubuntu-desktop is already the newest version (1.338).
You might want to run 'apt-get -f install' to correct these:
The following packages have unmet dependencies:
 kde-telepathy-minimal : Depends: kde-config-telepathy-accounts (>= 15.04.0) but it is not going to be installed
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).

Suite au message d'erreur lorsque j'ai essayé d'installer en utilisant

apt-get install -f

J'ai reçu le message d'erreur suivant,

    Reading package lists... Done
Building dependency tree       
Reading state information... Done
Correcting dependencies... Done
The following additional packages will be installed:
  kde-config-telepathy-accounts
The following NEW packages will be installed:
  kde-config-telepathy-accounts
0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
680 not fully installed or removed.
Need to get 0 B/137 kB of archives.
After this operation, 825 kB of additional disk space will be used.
Do you want to continue? [Y/n] y
(Reading database ... 283314 files and directories currently installed.)
Preparing to unpack .../kde-config-telepathy-accounts_4%3a15.12.3-0ubuntu1_amd64.deb ...
Unpacking kde-config-telepathy-accounts (4:15.12.3-0ubuntu1) ...
dpkg: error processing archive /var/cache/apt/archives/kde-config-telepathy-accounts_4%3a15.12.3-0ubuntu1_amd64.deb (--unpack):
 trying to overwrite '/usr/share/accounts/services/google-im.service', which is also in package account-plugin-google 0.12+16.04.20160126-0ubuntu1
Processing triggers for libc-bin (2.23-0ubuntu3) ...
Errors were encountered while processing:
 /var/cache/apt/archives/kde-config-telepathy-accounts_4%3a15.12.3-0ubuntu1_amd64.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)

Veuillez m'aider à résoudre ce problème. Merci.

BalaajiChander
la source
Il semble que vous puissiez avoir deux packages en conflit - l'un requis par Kubuntu. C'est tout ce que je peux ajouter au problème.
Zzzach ...
Essayezsudo apt-get dist-upgrade -f
ThisIsNotAnId

Réponses:

24

J'ai résolu ce problème en effectuant un écrasement forcé

sudo dpkg -i --force-overwrite  /var/cache/apt/archives/kde-config-telepathy-accounts_4%3a15.12.3-0ubuntu1_amd64.deb

puis fixer l'installation avec

sudo apt-get install -f
Ahmed Morgan
la source
1
Merci pour votre solution. Cela a résolu le problème pour moi. Il s'agit d'un bogue connu suivi dans le tableau de bord. bugs.launchpad.net/ubuntu/+source/ktp-accounts-kcm/+bug/1557698
Sam Gleske