Eu não posso atualizar nada

3

Vou relatar como recebi esse problema. O primeiro problema que tive foi que eu tinha um disco cheio / de inicialização e não podia fazer nada. Mudei alguns dos arquivos de configuração não usados para outro disco e consegui espaço suficiente para remover alguns dos kernels conforme instruções de outros posts neste site e muitos outros.

Agora, ele me pede para fazer apt-get -f install quando eu tento instalar, remover ... etc qualquer coisa com o apt-get. Eu olhei em volta e mencionou fazer dpkg --configure -a Então eu tentei isso e isso não resolveu o problema.

Aqui estão algumas saídas.

root@DownloadServer:/boot# apt-get -f install
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Correcting dependencies... Done
The following extra packages will be installed:
  linux-generic
The following packages will be upgraded:
  linux-generic
1 upgraded, 0 newly installed, 0 to remove and 4 not upgraded.
1 not fully installed or removed.
Need to get 0 B/1,720 B of archives.
After this operation, 0 B of additional disk space will be used.
Do you want to continue [Y/n]? y
dpkg: dependency problems prevent configuration of linux-generic:
 linux-generic depends on linux-image-generic (= 3.2.0.43.51); however:
  Version of linux-image-generic on system is 3.2.0.44.53.
 linux-generic depends on linux-headers-generic (= 3.2.0.43.51); however:
  Version of linux-headers-generic on system is 3.2.0.44.53.
dpkg: error processing linux-generic (--configure):
 dependency problems - leaving unconfigured
No apport report written because MaxReports has already been reached
                                                                    Errors were encountered while processing:
 linux-generic
E: Sub-process /usr/bin/dpkg returned an error code (1)

..

root@DownloadServer:/boot# dpkg --configure -a
dpkg: dependency problems prevent configuration of linux-generic:
 linux-generic depends on linux-image-generic (= 3.2.0.43.51); however:
  Version of linux-image-generic on system is 3.2.0.44.53.
 linux-generic depends on linux-headers-generic (= 3.2.0.43.51); however:
  Version of linux-headers-generic on system is 3.2.0.44.53.
dpkg: error processing linux-generic (--configure):
 dependency problems - leaving unconfigured
Errors were encountered while processing:
 linux-generic

Não tenho certeza se essa informação é útil, mas estou em execução em 3.2.0-34-generic - (uname -r)

Por favor, deixe-me saber se você precisar de mais informações. Agradecemos antecipadamente.

EDIT para mais informações:

root@DownloadServer:/boot# dpkg -l | grep linux-image
ii  linux-image-3.2.0-33-generic    3.2.0-33.52                  Linux kernel image for version 3.2.0 on 64 bit x86 SMP
ii  linux-image-3.2.0-34-generic    3.2.0-34.53                  Linux kernel image for version 3.2.0 on 64 bit x86 SMP
ii  linux-image-3.2.0-35-generic    3.2.0-35.55                  Linux kernel image for version 3.2.0 on 64 bit x86 SMP
ii  linux-image-3.2.0-36-generic    3.2.0-36.57                  Linux kernel image for version 3.2.0 on 64 bit x86 SMP
ii  linux-image-3.2.0-37-generic    3.2.0-37.58                  Linux kernel image for version 3.2.0 on 64 bit x86 SMP
ii  linux-image-3.2.0-38-generic    3.2.0-38.61                  Linux kernel image for version 3.2.0 on 64 bit x86 SMP
ii  linux-image-3.2.0-39-generic    3.2.0-39.62                  Linux kernel image for version 3.2.0 on 64 bit x86 SMP
ii  linux-image-3.2.0-40-generic    3.2.0-40.64                  Linux kernel image for version 3.2.0 on 64 bit x86 SMP
ii  linux-image-3.2.0-41-generic    3.2.0-41.66                  Linux kernel image for version 3.2.0 on 64 bit x86 SMP
ii  linux-image-3.2.0-43-generic    3.2.0-43.68                  Linux kernel image for version 3.2.0 on 64 bit x86 SMP
ii  linux-image-3.2.0-44-generic    3.2.0-44.69                  Linux kernel image for version 3.2.0 on 64 bit x86 SMP
ii  linux-image-generic             3.2.0.44.53                  Generic Linux kernel image
    
por Aaran McGuire 24.05.2013 / 16:35

1 resposta

3

Tópico oportuno. Eu fui atingido com isso hoje - realmente uma dor.

Esta resposta me colocou de volta nos negócios: Dependências não satisfeitas: linux-generic

Agora, eu só tenho que lembrar de assistir o espaço em / boot antes de executar o apt-get dist-upgrade. : - [

Essa outra pergunta dizia que não haveria problema em reinstalar o genérico do Linux em algum momento, mas, por enquanto, estou analisando o fim de um prazo de dois barris, então deixarei de lado por enquanto .

UPDATE: Testado adicionando de volta o pacote genérico-linux (prazos sejam condenados) - sem problemas. Comandos abaixo.

Resumo:

sudo apt-get remove linux-generic

Leia a pergunta vinculada acima se isso soar assustador. Seu problema deve agora ser corrigido, e se você quiser adicionar com segurança o linux-generic back.

sudo apt-get install linux-generic

e teste subsequente (não tenho certeza se esta é a melhor maneira de testar):

sudo apt-get install

Sem erros. Reconstrução evitada, fim de semana de 3 dias salvo. Ufa.

    
por cschooley 24.05.2013 / 22:07