无法修复 ubuntu 中的软件包

无法修复 ubuntu 中的软件包

我无法通过使用终端或突触包管理器来修复程序。我一直收到此消息。

dpkg: error processing archive /var/cache/apt/archives/kde-config-telepathy-accounts_15.04.1-0ubuntu1~ubuntu15.04~ppa1_amd64.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_amd64.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)

卸载 kubuntu 桌面后,似乎 KDE 的某些部分仍保留。这导致我无法安装或卸载程序。非常感谢您的帮助!

答案1

您不能同时安装两个包(kde-config-telepathy-accounts和),因为该文件包含在两个包中。account-plugin-google/usr/share/accounts/services/google-im.service

该软件包kde-config-telepathy-accounts通过您添加到系统中的 PPA 安装。正式包装包不存在这个问题。

kde-config-telepathy-accounts因此,请清除 PPA 或通过以下方式删除软件包

sudo apt-get remove kde-config-telepathy-accounts

或者

account-plugin-google通过以下方式删除包

sudo apt-get remove account-plugin-google

相关内容