Como resolver o problema de atualização no Ubuntu 13.10?

0

Eu pesquisei sobre esse problema. Eu pesquisei a página do askubuntu sobre esse problema, mas não consegui nenhuma solução adequada.

Eu enfrentei esse problema ao tentar atualizar usando: link Antes disso, tentei atualizar usando o gerenciador de atualização também. Mas, falhou e mostrar sugestão para digitar o código sudo apt-get -f install

Depois disso, você pode ver o que eu tenho

habi@habi-MS-7529:~$ sudo apt-get -f install
[sudo] password for habi: 
Reading package lists... Done
Building dependency tree       
Reading state information... Done
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
2 not fully installed or removed.
After this operation, 0 B of additional disk space will be used.
Setting up checkbox (0.15.6) ...
[Errno 5] Input/output error
dpkg: error processing checkbox (--configure):
 subprocess installed post-installation script returned error exit status 1
No apport report written because MaxReports is reached already
                                                              dpkg: dependency problems prevent configuration of checkbox-qt:
 checkbox-qt depends on checkbox (>= 0.15.6); however:
  Package checkbox is not configured yet.

dpkg: error processing checkbox-qt (--configure):
 dependency problems - leaving unconfigured
No apport report written because MaxReports is reached already
                                                              Errors were encountered while processing:
 checkbox
 checkbox-qt
E: Sub-process /usr/bin/dpkg returned an error code (1)
habi@habi-MS-7529:~$ sudo apt-get -f install
Reading package lists... Done
Building dependency tree       
Reading state information... Done
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
2 not fully installed or removed.
After this operation, 0 B of additional disk space will be used.
Setting up checkbox (0.15.6) ...
[Errno 5] Input/output error
dpkg: error processing checkbox (--configure):
 subprocess installed post-installation script returned error exit status 1
dpkg: dependency problems prevent configuration of checkbox-qt:
 checkbox-qt depends on checkbox (>= 0.15.6); however:
  Package checkbox is not configured yet.

dpkg: error processing checkbox-qt (--configure):
 dependency problems - leaving unconfigured
No apport report written because MaxReports is reached already
                                                              No apport report written because MaxReports is reached already
                       Errors were encountered while processing:
 checkbox
 checkbox-qt
E: Sub-process /usr/bin/dpkg returned an error code (1)

* Nota: Foi o mesmo erro que foi visto antes de digitar sudo apt-get -f install

Sobre o meu computador > > >

Memória 486.7 MiB Processador Intel Pentium (R) 4 CPU 3,00 GHz x 2  Gráficos Gálio 0,4 no llvmpipe (LLVM 3.2, 128 bits)   Tipo de sistema operacional 32 bits      Disco 18,5 GB

    
por Habi 10.11.2013 / 04:50

1 resposta

1

Você deve primeiro corrigir o problema de dependência antes de atualizar. checkbox e checkbox-qt não são pacotes tão importantes e podem ser removidos:

sudo dpkg -r checkbox checkbox-qt
sudo apt-get update
sudo apt-get -f install

Agora você pode atualizar seu sistema.

    
por 10.11.2013 / 05:03