Existem muitos outros pacotes específicos do kernel. Você deve sudo apt-get remove
os obsoletos. Aqui está como eu encontrei meus pacotes obsoletos:
# first, use the current kernel version (DO NOT REMOVE YOUR CURRENT KERNEL)
# to get a list of installed packages with the same version number.
dpkg -l | fgrep $(uname -r | sed -e 's/-generic//') | egrep '^ii'
# Then, inspecting the output, and manually selecting non-version
# substrings, construct a regular expression for egrep. I got:
dpkg -l | egrep 'linux-tools-|linux-source-|linux-libc-dev|linux-image-|linux-headers-'| egrep -v $(uname -r | sed -e 's/-generic//')
Isso produz uma lista de candidatos para sudo apt-get remove
. Eliminar desta lista o seu kernel atual e todos os seus parentes com versões semelhantes (eu fiz isso no último egrep
) E as versões anteriores do N. Comece com N = 3, use N = 2 com cuidado e tente evitar o caso N = 1.
NÃO REMOVA O SEU KERNEL ATUAL