Como limpar um apt-get bagunçado? [duplicado]

1

Pergunta: Eu queria fazer dist-upgrade no meu servidor esta manhã.
O que eu tenho é isso:

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-extra-3.5.0-32-generic : Depends: linux-image-3.5.0-32-generic but it is not installed
 linux-image-generic : Depends: linux-image-3.5.0-32-generic but it is not installed
E: Unmet dependencies. Try using -f.

Depois disso, tentei instalar o linux-image-3.5.0-32-generic, e foi o que aconteceu:

apt-get install linux-image-3.5.0-32-generic
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following packages were automatically installed and are no longer required:
  linux-headers-3.5.0-22 linux-headers-3.5.0-22-generic linux-headers-3.5.0-23
  linux-headers-3.5.0-23-generic linux-headers-3.5.0-25
  linux-headers-3.5.0-25-generic linux-headers-3.5.0-26
  linux-headers-3.5.0-26-generic linux-headers-3.5.0-27
  linux-headers-3.5.0-27-generic linux-headers-3.5.0-28
  linux-headers-3.5.0-28-generic linux-headers-3.5.0-30
  linux-headers-3.5.0-30-generic
Use 'apt-get autoremove' to remove them.
Suggested packages:
  fdutils linux-doc-3.5.0 linux-source-3.5.0 linux-tools
The following NEW packages will be installed:
  linux-image-3.5.0-32-generic
0 upgraded, 1 newly installed, 0 to remove and 16 not upgraded.
8 not fully installed or removed.
Need to get 12.0 MB of archives.
After this operation, 32.7 MB of additional disk space will be used.
Get:1 http://ch.archive.ubuntu.com/ubuntu/ quantal-updates/main linux-image-3.5.0-32-generic amd64 3.5.0-32.53 [12.0 MB]
Fetched 12.0 MB in 5s (2,307 kB/s)                       
(Reading database ... 316189 files and directories currently installed.)
Unpacking linux-image-3.5.0-32-generic (from .../linux-image-3.5.0-32-generic_3.5.0-32.53_amd64.deb) ...
Done.
dpkg: error processing /var/cache/apt/archives/linux-image-3.5.0-32-generic_3.5.0-32.53_amd64.deb (--unpack):
 cannot copy extracted data for './boot/System.map-3.5.0-32-generic' to '/boot/System.map-3.5.0-32-generic.dpkg-new': failed to write (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)
Examining /etc/kernel/postrm.d .
run-parts: executing /etc/kernel/postrm.d/initramfs-tools 3.5.0-32-generic /boot/vmlinuz-3.5.0-32-generic
run-parts: executing /etc/kernel/postrm.d/zz-update-grub 3.5.0-32-generic /boot/vmlinuz-3.5.0-32-generic
Errors were encountered while processing:
 /var/cache/apt/archives/linux-image-3.5.0-32-generic_3.5.0-32.53_amd64.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)
root@zotac:~# 

Eu tenho 250 GB de espaço sobrando, mas a partição de inicialização está 95% cheia. Mas agora eu não posso mais usar o apt-get, porque ele está preso àquele pacote que ele não pode instalar.

Além disso, apt-get autoremove e apt-get clean não ajudam.

Como posso redefinir o apt para que esse erro desapareça? Então eu posso remover as imagens antigas do Linux e instalar o novo?

    
por WitchCraft 05.06.2013 / 06:53

1 resposta

0

Parece que você tem muitos kernels antigos (headers / devel) instalados que estão preenchendo a partição /boot .

Execute dpkg -l | grep linux-image e verifique a lista e identifique as que você não deseja mais. Remova tudo o que você não deseja executando apt-get purge para remover os kernels que não são mais necessários.

% bl0ck_qu0te%

Como você tem mais espaço em /boot , agora você pode apt-get install linux-image-3.5.0-32-generic --reinstall instalar o kernel mais recente para o 12.10. Se for bem sucedido, você pode executar dist-upgrade .

    
por Terry Wang 05.06.2013 / 07:32