pacote Brocken para libavcodec54 & libx264-123 no Ubuntu 14.04LTS

0
$ sudo apt-get install -f
[sudo] password for ajay: 
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Correcting dependencies... Done
The following extra packages will be installed:
  libx264-123
The following NEW packages will be installed:
  libx264-123
0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
2 not fully installed or removed.
Need to get 0 B/345 kB of archives.
After this operation, 1,005 kB of additional disk space will be used.
Do you want to continue? [Y/n] y
(Reading database ... 166965 files and directories currently installed.)
Preparing to unpack .../libx264-123_0.123.2189+git35cf912-1ubuntu4_amd64.deb ...
Unpacking libx264-123:amd64 (2:0.123.2189+git35cf912-1ubuntu4) ...
dpkg-deb (subprocess): decompressing archive member: lzma error: compressed data is corrupt
dpkg-deb: error: subprocess <decompress> returned error exit status 2
dpkg: error processing archive /var/cache/apt/archives/libx264-123_0.123.2189+git35cf912-1ubuntu4_amd64.deb (--unpack):
 cannot copy extracted data for './usr/lib/x86_64-linux-gnu/libx264.so.123' to '/usr/lib/x86_64-linux-gnu/libx264.so.123.dpkg-new': unexpected end of file or stream
Errors were encountered while processing:
 /var/cache/apt/archives/libx264-123_0.123.2189+git35cf912-1ubuntu4_amd64.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)
    
por Kachavarapu Ajay 02.06.2014 / 10:37

2 respostas

1

Experimente os comandos abaixo no terminal

sudo apt-get clean
sudo apt-get install -f

Como eu sei?

Seu relatório de erro afirma claramente que, ele enfrenta um erro ao descompactar os arquivos baixados. Isso ocorre principalmente devido ao download incompleto de arquivos.

dpkg-deb (subprocess): decompressing archive member: lzma error: compressed data is corrupt
dpkg-deb: error: subprocess <decompress> returned error exit status 2

Portanto, excluir todos os arquivos dentro do diretório /var/cache/apt/archives ( sudo apt-get clean ) e corrigir os pacotes quebrados ( sudo apt-get install -f ) resolverá seu problema.

    
por Avinash Raj 02.06.2014 / 11:31
0

Experimente: sudo apt-get clean && sudo apt-get install -f

    
por Kachavarapu Ajay 02.06.2014 / 11:01