2015-11-23 155 views
1

KDE桌面每當我嘗試卸載KDE桌面它給了我這個錯誤:無法卸載在Ubuntu 15.10

[email protected]:~$ sudo apt-get remove kubuntu-desktop 
[sudo] password for a7madx7: 
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 
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution). 

但是當我做,因爲它說,它給了我另一個錯誤:

[email protected]:~$ sudo apt-get -f install 
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 upgraded, 1 newly installed, 0 to remove and 1 not upgraded. 
621 not fully installed or removed. 
Need to get 0 B/138 kB of archives. 
After this operation, 828 kB of additional disk space will be used. 
Do you want to continue? [Y/n] y 
(Reading database ... 605588 files and directories currently installed.) 
Preparing to unpack .../kde-config-telepathy-accounts_4%3a15.08.2-0ubuntu1_amd64.deb ... 
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) 
[email protected]:~$ 

我想知道如何在沒有妨礙的情況下徹底卸載kde-desktop。

P.S.

由於此錯誤,我無法安裝其他任何東西。

回答

1

如果你不需要它,你可以運行sudo apt-get remove kde-telepathy-minimal然後sudo apt-get clean,它應該阻止它嘗試安裝。

如果你仍然有問題後,你可以嘗試sudo dpkg --purge --force-all kde-telepathy-minimal

+1

感謝設法讓它工作使用你的指導人:) – a7madx7