Erro no disco falso completo: o apt-get não consegue instalar ou remover

19

Encontrei o seguinte erro ao atualizar meu servidor Ubuntu 12.04. Agora o apt-get não pode instalar ou remover nenhum pacote.

Unpacking linux-headers-3.13.0-62 (from .../linux-headers-3.13.0-62_3.13.0-62.102~precise1_all.deb) ...
dpkg: error processing /var/cache/apt/archives/linux-headers-3.13.0-62_3.13.0-62.102~precise1_all.deb (--unpack):
 unable to create '/usr/src/linux-headers-3.13.0-62/arch/arm/include/asm/ptrace.h.dpkg-new' 
(while processing './usr/src/linux-headers-3.13.0-62/arch/arm/include/asm/ptrace.h'): No space left on device
No apport report written because the error message indicates a disk full error
 dpkg-deb: error: subprocess paste was killed by signal (Broken pipe)
Errors were encountered while processing:
 /var/cache/apt/archives/linux-headers-3.13.0-62_3.13.0-62.102~precise1_all.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)

Embora eu não esteja realmente sem espaço em disco,

# df -h
Filesystem      Size  Used Avail Use% Mounted on
/dev/sda1       6.8G  4.7G  1.8G  69% /  

De qualquer forma, meus inodes estão cheios,

# df -i
Filesystem     Inodes   IUsed  IFree IUse% Mounted on
/dev/sda1      458752  455214   3538  100% /

Eu tenho mais de dez kernels antigos, mas não consigo removê-los, pois o meu apt-get é coxo. Portanto, não posso seguir esta postagem que relata problemas semelhantes.

A única opção parece excluir alguns kernels mais antigos manualmente. Isso causará algum problema?

Existe alguma saída melhor? Posso usar o espaço reservado para o root por enquanto e remover os kernels mais antigos?

    
por souravc 02.09.2015 / 22:18

2 respostas

6

Encontrei agora a saída da situação e removi alguns kernels antigos de /usr/src para me livrar da situação. Felizmente tudo correu bem e o apt começou a funcionar novamente.

É altamente recomendável fazer backup antes de remover os kernels mais antigos em uma máquina de produção.

    
por souravc 26.12.2016 / 08:16
23

Eu sei que este post é um pouco antigo, mas encontrei uma resposta aqui para qualquer um que possa se deparar com este post: link

Caso esse link seja quebrado, aqui está o snippet relevante:

Removendo com segurança Kernels antigos

Para usuários de sistemas LVM, sistemas criptografados ou sistemas de armazenamento limitado, o problema mais freqüente é que a partição / boot está cheia. O gerenciador de pacotes não pode instalar um upgrade pendente devido à falta de espaço. Além disso, o apt-get não pode remover um pacote devido à dependência quebrada.

Este problema pode ser corrigido de forma rápida e fácil a partir do shell. Basta identificar um ou dois kernels antigos para remover manualmente, o que fornecerá ao gerenciador de pacotes espaço suficiente para instalar a atualização na fila.


$ sudo rm -rv ${TMPDIR:-/var/tmp}/mkinitramfs-*  
                                  ## In Ubuntu 16.04 and earlier there may be leftover temporary
                                  ## files to delete.
                                  ## See: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=814345

$ uname -r                        ## This command identifies the currently-running kernel
4.2.0-21-generic                  ## This is the current kernel.
                                  ## DO NOT REMOVE it!

$ dpkg -l | tail -n +6 | grep -E 'linux-image-[0-9]+' | grep -Fv $(uname -r)
                                  ## This command lists all the kernels excluding the booted
                                  ## kernel in the package database, and their status.
rc  linux-image-4.2.0-14-generic  ## The oldest kernel in the database
                                  ## Status 'rc' means it's already been removed
ii  linux-image-4.2.0-15-generic  ## The oldest installed kernel. Eligible for removal.
                                  ## Status 'ii' means Installed.
ii  linux-image-4.2.0-16-generic  ## Another old installed kernel. Eligible for removal
ii  linux-image-4.2.0-18-generic  ## Another old installed kernel. Eligible for removal
ii  linux-image-4.2.0-19-generic  ## The previous good kernel. Keep
iU  linux-image-4.2.0-22-generic  ## DO NOT REMOVE. Status 'iU' means it's not installed,
                                  ## but queued for install in apt.
                                  ## This is the package we want apt to install.

                                  ## Purge the oldest kernel package using dpkg instead of apt.
                                  ## First you need to remove the image initrd.img file manually
                                  ## due to Bug #1678187.
$ sudo update-initramfs -d -k 4.2.0-15-generic
$ sudo dpkg --purge linux-image-4.2.0-15-generic linux-image-extra-4.2.0-15-generic
                                  ## If the previous command fails, some installed package
                                  ## depends on the kernel. The output of dpkg tells the name
                                  ## of the package. Purge it first.

                                  ## Also purge the respective header package.
$ sudo dpkg --purge linux-headers-4.2.0-15-generic
                                  ## Try also purging the common header package.
$ sudo dpkg --purge linux-headers-4.2.0-15
                                  ## Do not worry, if the previous command fails.

$ sudo apt-get -f install         ## Try to fix the broken dependency.

Eu segui isso com:

sudo apt-get autoremove --purge
    
por Junkle 18.04.2017 / 04:22