Não é possível limpar arquivos antigos do kernel em / boot [duplicate]

2

Estou tentando atualizar meu servidor

navin@ubuntu:~$ sudo apt-get dist-upgrade
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:
linux-image-generic : Depends: linux-image-3.2.0-67-generic but it is not installed
E: Unmet dependencies. Try using -f.

Quando eu tentei com o apt-get -f install

navin@ubuntu:~$ sudo apt-get -f install linux-image-3.2.0-67-generic
Reading package lists... Done
Building dependency tree
Reading state information... Done
Suggested packages:
fdutils linux-doc-3.2.0 linux-source-3.2.0 linux-tools
The following NEW packages will be installed:
linux-image-3.2.0-67-generic
0 upgraded, 1 newly installed, 0 to remove and 29 not upgraded.
15 not fully installed or removed.
Need to get 0 B/38.8 MB of archives.
After this operation, 150 MB of additional disk space will be used.
(Reading database ... 147902 files and directories currently installed.)
Unpacking linux-image-3.2.0-67-generic (from .../linux-image-3.2.0-67-generic_3.2.0- 67.101_amd64.deb) ...
Done.
dpkg: error processing /var/cache/apt/archives/linux-image-3.2.0-67-generic_3.2.0-   67.101_amd64.deb (--unpack):
failed in write on buffer copy for backend dpkg-deb during './boot/vmlinuz-3.2.0-67-generic': No space left on device
No apport report written because MaxReports is reached already
                                                          dpkg-deb: error: subprocess   paste was killed by signal (Broken pipe)
  Examining /etc/kernel/postrm.d .
run-parts: executing /etc/kernel/postrm.d/initramfs-tools 3.2.0-67-generic /boot/vmlinuz-3.2.0-67-generic
run-parts: executing /etc/kernel/postrm.d/zz-update-grub 3.2.0-67-generic /boot/vmlinuz-3.2.0-67-generic
 Errors were encountered while processing:
/var/cache/apt/archives/linux-image-3.2.0-67-generic_3.2.0-67.101_amd64.deb
  E: Sub-process /usr/bin/dpkg returned an error code (1)

Quando eu tentei remover os arquivos antigos do kernel em / boot

root@ubuntu: apt-get autoremove
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:
 linux-image-generic : Depends: linux-image-3.2.0-67-generic but it is not installed
E: Unmet dependencies. Try using -f.

Por favor, forneça alguma solução para isso

    
por navinjeth 20.08.2014 / 10:41

2 respostas

1

Esse é o principal problema:

No space left on device

É a sua partição /boot que não tem mais espaço. Tente fazer isso:

Exclua as imagens do kernel não utilizadas manualmente. Mas, tome cuidado para não deletar o usado ou você não poderá mais inicializar. Digite uname -r em um terminal. Tudo o que contém essa string de versão não deve ser excluído.

Quando você limpou a partição de inicialização, use apt-get -f install linux-image-3.2.0-67-generic novamente.

Em seguida, atualize seu sistema corretamente com:

apt-get dist-upgrade
    
por chaos 20.08.2014 / 10:49
0

Acho melhor instalar o Ubuntu tweak e remover os kernels antigos por ele.

Ele faz isso automaticamente para você.

Você precisa ir para a guia Zelador e selecionar kernel antigo .

Em seguida, aperte o botão clean e você estará pronto ...:)

    
por Pigeonaras 20.08.2014 / 11:05