web-dev-qa-db-fra.com

Erreurs rencontrées lors de l'installation de kubuntu le 15.04

J'ai couru:

Sudo add-apt-repository ppa:kubuntu-ppa/backports
Sudo apt-get update
Sudo apt-get install kubuntu-desktop

et après cela m'a donné ce message d'erreur:

dpkg: error processing archive /var/cache/apt/archives/kde-config-telepathy-accounts_15.04.1-0ubuntu1~ubuntu15.04~ppa1_i386.deb (--unpack):
 trying to overwrite '/usr/share/accounts/services/google-im.service', which is also in package account-plugin-google 0.12+15.04.20150415.1-0ubuntu2
Errors were encountered while processing:
 /var/cache/apt/archives/kde-config-telepathy-accounts_15.04.1-0ubuntu1~ubuntu15.04~ppa1_i386.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)

et chaque fois que j'essaye d'installer un nouveau programme ou d'exécuter la solution suggérée à ce problème, ce qui a été mentionné après avoir essayé d'installer un autre programme, Sudo apt-get -f install je reçois à nouveau le même message d'erreur.

EDIT: Sorties demandées.

Sudo apt-get --configure -a

donne this (trop grand pour tenir dans la question).

Sudo apt-get install -f

donne:

Reading package lists... Done
Building dependency tree       
Reading state information... Done
Correcting dependencies... Done
The following extra packages will be installed:
  kde-config-telepathy-accounts
The following NEW packages will be installed
  kde-config-telepathy-accounts
0 to upgrade, 1 to newly install, 0 to remove and 23 not to upgrade.
2 not fully installed or removed.
Need to get 0 B/131 kB of archives.
After this operation, 697 kB of additional disk space will be used.
Do you want to continue? [Y/n] Y
(Reading database ... 1088636 files and directories currently installed.)
Preparing to unpack .../kde-config-telepathy-accounts_15.04.1-0ubuntu1~ubuntu15.04~ppa1_i386.deb ...
Unpacking kde-config-telepathy-accounts (15.04.1-0ubuntu1~ubuntu15.04~ppa1) ...
dpkg: error processing archive /var/cache/apt/archives/kde-config-telepathy-accounts_15.04.1-0ubuntu1~ubuntu15.04~ppa1_i386.deb (--unpack):
 trying to overwrite '/usr/share/accounts/services/google-im.service', which is also in package account-plugin-google 0.12+15.04.20150415.1-0ubuntu2
Errors were encountered while processing:
 /var/cache/apt/archives/kde-config-telepathy-accounts_15.04.1-0ubuntu1~ubuntu15.04~ppa1_i386.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)

en courant:

cat /etc/apt/sources.list

donne:

# See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to
# newer versions of the distribution.
deb http://au.archive.ubuntu.com/ubuntu/ vivid main restricted
deb-src http://au.archive.ubuntu.com/ubuntu/ vivid main restricted

## Major bug fix updates produced after the final release of the
## distribution.
deb http://au.archive.ubuntu.com/ubuntu/ vivid-updates main restricted
deb-src http://au.archive.ubuntu.com/ubuntu/ vivid-updates main restricted

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team. Also, please note that software in universe WILL NOT receive any
## review or updates from the Ubuntu security team.
deb http://au.archive.ubuntu.com/ubuntu/ vivid universe
deb-src http://au.archive.ubuntu.com/ubuntu/ vivid universe
deb http://au.archive.ubuntu.com/ubuntu/ vivid-updates universe
deb-src http://au.archive.ubuntu.com/ubuntu/ vivid-updates universe

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu 
## team, and may not be under a free licence. Please satisfy yourself as to 
## your rights to use the software. Also, please note that software in 
## multiverse WILL NOT receive any review or updates from the Ubuntu
## security team.
deb http://au.archive.ubuntu.com/ubuntu/ vivid multiverse
deb-src http://au.archive.ubuntu.com/ubuntu/ vivid multiverse
deb http://au.archive.ubuntu.com/ubuntu/ vivid-updates multiverse
deb-src http://au.archive.ubuntu.com/ubuntu/ vivid-updates multiverse

## N.B. software from this repository may not have been tested as
## extensively as that contained in the main release, although it includes
## newer versions of some applications which may provide useful features.
## Also, please note that software in backports WILL NOT receive any review
## or updates from the Ubuntu security team.
deb http://au.archive.ubuntu.com/ubuntu/ vivid-backports main restricted universe multiverse
deb-src http://au.archive.ubuntu.com/ubuntu/ vivid-backports main restricted universe multiverse

deb http://security.ubuntu.com/ubuntu vivid-security main restricted
deb-src http://security.ubuntu.com/ubuntu vivid-security main restricted
deb http://security.ubuntu.com/ubuntu vivid-security universe
deb-src http://security.ubuntu.com/ubuntu vivid-security universe
deb http://security.ubuntu.com/ubuntu vivid-security multiverse
deb-src http://security.ubuntu.com/ubuntu vivid-security multiverse

## Uncomment the following two lines to add software from Canonical's
## 'partner' repository.
## This software is not part of Ubuntu, but is offered by Canonical and the
## respective vendors as a service to Ubuntu users.
# deb http://archive.canonical.com/ubuntu trusty partner
# deb-src http://archive.canonical.com/ubuntu trusty partner
deb http://download.virtualbox.org/virtualbox/debian vivid contrib
3
BH2017

C'est le problème:

dpkg: error processing archive /var/cache/apt/archives/kde-config-telepathy-accounts_15.04.1-0ubuntu1~ubuntu15.04~ppa1_i386.deb (--unpack):
 trying to overwrite '/usr/share/accounts/services/google-im.service', which is also in package account-plugin-google 0.12+15.04.20150415.1-0ubuntu2

Donc deux commandes dans un terminal:

Sudo apt-get purge account-plugin-google
Sudo apt-get install -f
3
A.B.

J'ai vu le lien ci-joint.

Je pense que vous devez faire: -

Sudo apt-get remove --purge kde-telepathy-minimal
Sudo apt-get remove --purge kde-telepathy

Aussi, essayez de supprimer les paquets orphelins en utilisant apt-get autoremove

EDIT: Si cela ne fonctionne pas, essayez d'installer Aptitude:

Installer aptitude:

Sudo apt-get aptitude

Exécuter:

Sudo aptitude purge kde-telepathy
Sudo aptitude purge kde-telepathy-minimal
0
Sharad Gautam
0
julian-alarcon