Como posso remover o pacote de plasma kde quebrado (devido ao corte de energia durante a instalação)? [duplicado]

1

Eu estava instalando o KDE no Ubuntu, mas a fonte de alimentação foi cortada. quando tentei reinstalar, ocorreu um erro.

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).

Eu tentei usar sudo apt-get --purge remove kubuntu-desktop , mas falhou. Usar sudo apt-get -f install não funcionou.

The following additional 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 60 not upgraded.
704 not fully installed or removed.
Need to get 0 B/148 kB of archives.
After this operation, 808 kB of additional disk space will be used.
Do you want to continue? [Y/n] y
(Reading database ... 293342 files and directories currently installed.)
Preparing to unpack .../kde-config-telepathy accounts_4%3a15.12.3-0ubuntu1_i386.deb ...
Unpacking kde-config-telepathy-accounts (4:15.12.3-0ubuntu1) ...
dpkg: error processing archive /var/cache/apt/archives/kde-config-telepathy-accounts_4%3a15.12.3-0ubuntu1_i386.deb (--unpack):
trying to overwrite '/usr/share/accounts/services/google-im.service', which is also in package account-plugin-google 0.12+16.04.20160126-0ubuntu1
Processing triggers for libc-bin (2.23-0ubuntu7) ...
Errors were encountered while processing:
/var/cache/apt/archives/kde-config-telepathy-accounts_4%3a15.12.3-0ubuntu1_i386.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)

Também usei sudo dpkg --remove --force-remove-reinstreq kubuntu-desktop e foi concluída com êxito, mas não tem efeito. Não consegui instalar o synaptic e também não consegui atualizar o pacote. Eu também não consegui remover google-im.service

    
por xXMAXXx 21.04.2017 / 02:46

1 resposta

1

Basta executar:

sudo dpkg -i --force-all /var/cache/apt/archives/kde-config-telepathy-accounts_4%3a15.12.3-0ubuntu1_i386.deb

Isso reinstalará o pacote e forçará o arquivo a ser sobrescrito. Esse problema geralmente ocorre quando um arquivo é movido de um pacote para outro, e devido ao repositório não estar totalmente atualizado, ou como no seu caso, uma instalação interrompida, o novo arquivo não pode ser descompactado porque parece entrar em conflito com outro pacote.

O que o comando acima faz é fazer com que o dpkg ignore qualquer erro (através do uso do --force-all flag). Você também pode usar --force-overwrite .

    
por RolandiXor 23.04.2017 / 00:12