100MB é suficiente para 2 kernels e um disco de inicialização. Você pode ver seus kernels atuais instalados executando:
dpkg -l 'linux-image-*' | grep '^ii'
Exemplo de saída:
ii linux-image-2.6.35-28-generic 2.6.35-28.50 Linux kernel image for version 2.6.35 on x86/x86_64
ii linux-image-2.6.38-8-generic 2.6.38-8.42 Linux kernel image for version 2.6.38 on x86/x86_64
ii linux-image-generic 2.6.38.8.22 Generic Linux kernel image
Depois de confirmar que o kernel mais recente funciona, você pode remover os anteriores. Neste caso, existe apenas um kernel redundante:
sudo apt-get purge linux-image-2.6.35-28-generic
Se esse processo não for concluído por causa dos acionadores de instalação anteriores, tente adicionar -f
( --fix-broken
) antes de purge
.