在15.04上安装kubuntu时遇到的错误

我跑了:

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

之后它给了我这个错误信息:

 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) 

每当我尝试安装一个新程序或运行建议的解决这个问题的解决方案时,我尝试安装另一个程序后提到, sudo apt-get -f install我再次收到相同的错误消息。

编辑:请求的输出。

 sudo apt-get --configure -a 

给出了这个 (太大而不适合这个问题)。

 sudo apt-get install -f 

得到:

 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) 

在跑步的时候:

 cat /etc/apt/sources.list 

得到:

 # 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 ## NB 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 ## NB 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 ## NB 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 

那就是问题所在:

 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 

因此在终端中有两个命令:

 sudo apt-get purge account-plugin-google sudo apt-get install -f 

我看到了附加的链接。

我想你需要这样做: –

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

此外,尝试使用apt-get autoremove删除孤立的包

编辑:如果这不起作用,尝试安装Aptitude:

安装aptitude:

 sudo apt-get aptitude 

运行:

 sudo aptitude purge kde-telepathy sudo aptitude purge kde-telepathy-minimal