Problemas e erros do Apt-get: VIM

0

Encontrei este ótimo link: Como resolvo dependências não satisfeitas depois de adicionar um PPA? mas não consigo obter nenhum comando envolvendo o apt-get para executar corretamente.

Meu principal problema é o preenchimento de uma partição e não sei por que, então estou tentando remover pacotes desnecessários.

Ex:  apt-get purge aspell-en  returns:

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:
 vim : Depends: vim-runtime (= 2:7.2.445+hg~cb94c42c0e1a-1) but it is not 
going to be     installed
E: Unmet dependencies. Try 'apt-get -f install' with no packages 
(or specify a solution).

Esta mensagem acontece não importa qual comando do apt-get eu escolha, incluindo aqueles destinados a corrigir o problema em primeiro lugar!

Para piorar, meu disco está 100% cheio e não consigo descobrir como consertar.

When I run: apt-get -f install , it says:
Reading package lists... Done
Building dependency tree
Reading state information... Done
Correcting dependencies... Done
The following extra packages will be installed:
      vim-runtime
The following NEW packages will be installed:
      vim-runtime
0 upgraded, 1 newly installed, 0 to remove and 228 not upgraded.
1 not fully installed or removed.
Need to get 6,207 kB of archives.
After this operation, 26.0 MB of additional disk space will be used.
Do you want to continue [Y/n]? y
Get:1 http://ftp.us.debian.org/debian/ squeeze/main vim-runtime all 2:7.2.445+hg~cb94c42c0e1a-1 [6,207 kB]
Fetched 6,207 kB in 1s (3,907 kB/s)
(Reading database ... 131282 files and directories currently installed.)

Unpacking vim-runtime (from .../vim-runtime_2%3a7.2.445+hg~cb94c42c0e1a-1_all.deb)

Adding 'diversion of /usr/share/vim/vim72/doc/help.txt to
/usr/share/vim/vim72/doc/help.txt.vim-tiny by vim-runtime'

dpkg-divert: rename involves overwriting
'/usr/share/vim/vim72/doc/help.txt.vim-tiny' with different file 
'/usr/share/vim/vim72/doc/help.txt', not allowed
dpkg: error processing /var/cache/apt/archives/vim-
runtime_2%3a7.2.445+hg~cb94c42c0e1a-1_all.deb (--unpack):

subprocess new pre-installation script returned error exit status 2
configured to not write apport reports

No diversion 'diversion of /usr/share/vim/vim72/doc/help.txt by vim-runtime', none removed.
No diversion 'diversion of /usr/share/vim/vim72/doc/tags by vim-runtime', none   removed.

Errors were encountered while processing:
/var/cache/apt/archives/vim-runtime_2%3a7.2.445+hg~cb94c42c0e1a-1_all.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)

Se eu tentar remover o vim-runtime, recebo:

Package vim-runtime is not installed, so not removed
You might want to run 'apt-get -f install' to correct these:
The following packages have unmet dependencies:
 vim : Depends: vim-runtime (= 2:7.2.445+hg~cb94c42c0e1a-1) but it is not going to be installed
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).
    
por Corepuncher 09.09.2013 / 17:58

1 resposta

1

Antes de tudo, experimente o comando que está lhe dizendo para tentar:

apt-get -f install

Para consertar pacotes quebrados. Se o seu disco estiver cheio, isso pode ou não funcionar dependendo se o pacote foi completamente baixado.

Se o acima não funcionar por falta de espaço, tente

aptitude clean

para liberar algum espaço. Observe, no entanto, que isso limpará o cache do pacote apt (esses são .deb dos arquivos dos pacotes instalados; armazenados em /var/cache/apt/archives ); os pacotes atuais permanecerão instalados, mas você não terá mais os arquivos .deb no disco e precisará fazer o download novamente se remover / reinstalar um pacote existente.

Atualizar

Em resposta à sua pergunta editada, acho que você precisa:

apt-get purge vim vim-runtime
apt-get install vim vim-runtime
    
por Joseph R. 09.09.2013 / 18:03