Ubuntu 12.04 atualização e thunderbird

1

Depois de aplicar as atualizações sugeridas (179), uma mensagem de erro no final do processo sugeriu que eu executasse o apt-get install -f.

Como é uma instalação bastante nova do Ubuntu (x86), ainda não configurei nada no Thunderbird. Mensagens de erro diferentes (ver detalhes) foram geradas com o processo -f:

~$ sudo apt-get install -f
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Correcting dependencies... Done
The following extra packages will be installed:
  thunderbird
Suggested packages:
  latex-xft-fonts
The following packages will be upgraded:
  thunderbird
1 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
2 not fully installed or removed.
Need to get 0 B/20.8 MB of archives.
After this operation, 594 kB of additional disk space will be used.
Do you want to continue [Y/n]? y
(Reading database ... 170457 files and directories currently installed.)
Preparing to replace thunderbird 11.0.1+build1-0ubuntu2 (using .../thunderbird_12.0.1+build1-0ubuntu0.12.04.1_i386.deb) ...
Unpacking replacement thunderbird ...
dpkg-deb (subprocess): data: internal gzip read error: 
'<fd:4>: invalid code lengths set' dpkg-deb: error: subprocess <decompress> returned error exit status 2
dpkg: error processing /var/cache/apt/archives  /thunderbird_12.0.1+build1-0ubuntu0.12.04.1_i386.deb (--unpack):
short read on buffer copy for backend dpkg-deb during './usr/lib/thunderbird/libxul.so'
 Errors were encountered while processing:
 /var/cache/apt/archives/thunderbird_12.0.1+build1-0ubuntu0.12.04.1_i386.deb
 E: Sub-process /usr/bin/dpkg returned an error code (1)
    
por Dcm1405 30.05.2012 / 21:01

1 resposta

2

Tente:

 sudo rm /var/cache/apt/archives/thunderbird_12.0.1+build1-0ubuntu0.12.04.1_i386.deb
 sudo apt-get clean
 sudo apt-get update && sudo apt-get dist-upgrade

Nota: Basta olhar para a saída do apt-get dist-upgrade antes de concordar, ele deve ser seguro em um sistema sem -propostos ativado

    
por jasmines 30.05.2012 / 21:33