编辑:请求的输出。

编辑:请求的输出。

我跑了:

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

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

答案1

那就是问题所在:

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

答案2

我看到了附加的链接。

我认为你需要做:-

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

另外,尝试使用以下方法删除孤立的包apt-get autoremove

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

安装能力:

sudo apt-get aptitude

运行:

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

答案3

相关内容