Apt-get crash em qualquer operação de instalação

1

Eu tenho um problema estranho com o Ubuntu 14.04. Quando tento atualizar meu sistema ou instalar algum software, tenho um erro

$ sudo apt-get install 4digits
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:
    4digits : Depends: python-glade2 but it is not going to be installed
    linux-tools-3.13.0-53 : Depends: linux-tools-common but it is not going to be installed
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution)

Então, quando eu tento iniciar "sudo apt-get -f install" eu tenho erro novamente

Preparing to unpack .../linux-tools-common_3.13.0-53.89_all.deb ...
Unpacking linux-tools-common (3.13.0-53.89) ...
dpkg: error processing archive /var/cache/apt/archives/linux-tools-common_3.13.0-53.89_all.deb (--unpack):
    trying to overwrite '/usr/bin/perf', which is also in package linux-   lts-vivid-tools-common 3.19.0-18.18~14.04.1
dpkg-deb: error: subprocess paste was killed by signal (Broken pipe)

Errors were encountered while processing:
  /var/cache/apt/archives/linux-tools-common_3.13.0-53.89_all.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)
    
por Denis 21.05.2015 / 14:35

2 respostas

0

Esse bug é confirmado . Como os pacotes exigem ferramentas vívidas, a atualização para upgadring para 15,04 pode ser uma solução alternativa.

    
por apex39 21.05.2015 / 15:19
0

Tente reparar seu gerenciamento de pacotes via

sudo apt-get purge linux-tools-3.13.0-53 linux-tools-common

Por fim, remova o outro aplicativo também

sudo apt-get purge 4digits
    
por linrunner 23.05.2015 / 16:21