web-dev-qa-db-ja.com

15.10にkubuntu-desktopをインストールすると失敗して壊れるAPT

KDEにはPPAを使用せず、ストックバージョンのみを使用しています。 kubuntu-desktopをインストールしようとしましたが、次のように失敗しました:

Unpacking kde-config-telepathy-accounts (4:15.08.2-0ubuntu1) ...
dpkg: error processing archive /var/cache/apt/archives/kde-config-telepathy-accounts_4%3a15.08.2-0ubuntu1_AMD64.deb (--unpack):
trying to overwrite '/usr/share/accounts/services/google-im.service', which is also in package account-plugin-google 0.12+15.10.20150723-0ubuntu1
dpkg-deb: error: subprocess paste was killed by signal (Broken pipe)
Errors were encountered while processing:
/var/cache/apt/archives/kde-config-telepathy-accounts_4%3a15.08.2-0ubuntu1_AMD64.deb
E: Sub-process /usr/bin/dpkg returned an error code (1) code here

パッケージを更新、インストール、または削除できなくなりました。すべての操作はエラーになります。

Reading package lists... Done
Building dependency tree
Reading state information... Done
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
unity-scope-gdrive : Depends: account-plugin-google but it is not going to be installed
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).

「apt-get -f install」を実行すると、上記の元のエラーが発生します。

私は、synapticを使用してaccount-plugin-googleパッケージを強制的に削除することを提案しましたが、synapticをインストールしておらず、明らかに今はインストールできません。これは、「apt-get install synaptic」の結果です。

Reading package lists... Done
Building dependency tree
Reading state information... Done
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
synaptic : Depends: libept1.4.16 but it is not going to be installed
        Depends: libvte-2.90-9 (>= 1:0.27.2) but it is not going to be installed
        Recommends: libgtk2-Perl (>= 1:1.130) but it is not going to be installed
        Recommends: rarian-compat but it is not going to be installed
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).
1
DrBrynzo

APTを少し読んだ後、kubuntu-desktopのインストール(apt-get install -f)を終了し、APT再び動作するようになりました。 account-plugin-googleとその依存性unity-scope-driveを強制的に削除する必要がありました。

dpkg --remove --force-remove-reinstreq account-plugin-google unity-scope-gdrive

これらのパッケージを再インストールしようとしていないので、これが本当の「修正」かどうかはわかりませんが、少なくともAPTが再び機能するようになりました。

5
DrBrynzo