Ubuntu usually creates a separate /boot partition for storing Linux kernels. This isolates the kernels from the rest of the operating system, which helps make the system more stable. However, as it is usually a small partition (> 200 MB), it can fill up with old kernels. While keeping a couple old kernels around can be advisable, so as to be able to roll back to old kernels if a new one proves unstable (an unusual occurrence), it is not necessary to keep more than one or two.
A user will usually notice they are out of space in /boot only after it is causing problems. If a new kernel tries to install without enough space, the installation will fail. If the system is then rebooted and it tries to use the new kernel, it will have a kernel panic. Sometimes it will be more graceful and simply cause dependency problems, which cripples the functionality of apt-get.
Here are some tricks to solve this problem:
uname -r
ls /boot
sudo dpkg --force-all -P linux-image-3.13.0-32-generic
linux-image-extra
version of the corresponding kernels to fix dependency problems.sudo apt-get install -f
linux-image-extra
packages for those kernels (there may be other such dependencies, check online).sudo apt-get autoremove
to remove the other old kernels.autoremove
, you try the following command, though using a low-level utility such as dpkg is not necessarily recommended. It will remove all kernels except the one currently running.sudo apt-get purge $(dpkg -l linux-{image,headers}-"[0-9]*" | awk '/ii/{print $2}' | grep -ve "$(uname -r | sed -r 's/-[a-z]+//)")
/boot
partition, run apt-get update
and apt-get upgrade
to update your system (including any new kernels).