Remove Old Kernels in Ubuntu

Edit: Oct. 2, 2010 – I’ve written a new post that shows a bash one-liner command that will remove the old kernels from your system in one step. You can check it out here.

If you’ve been using Ubuntu Linux for a while, then you probably have a number of Linux kernel updates that have been installed on your system. (I’ve got a total of 3 kernels in my Karmic system already.) In all likelihood, these updates get installed and you boot into the latest kernel, never to use the older kernels again. But these old kernels are still hanging around on your system, cluttering up your grub boot screen and taking up space on your hard drive. Ā 

There have been attempts made to create an automatic tool to clean these up for you along with much discussion on the Ubuntu Forums, but so far there’s nothing officially in the repositories.

In the past, I’ve gone into Synaptic and searched for the older kernels and related packages and manually marked them for removal. This method works fine, but the search process is a little slow in Synaptic and you have to run a few searches to catch all of the packages to remove. I decided to come up with a way to do this from the terminal and hopefully save some time. The commands I’m going to use can be a bit daunting, so just copy and paste.

Warning

Don’t follow this process unless you’re sure you don’t need to boot into the older kernels. If you’re not sure, just leave things alone. Also, it is possible to remove all of the kernels from your system and make it unbootable. I suggest leaving the latest kernel and one version previous to that. You can find out the kernel version that you’re currently running with

uname -r

Find and remove old kernels

The first step is to figure out what kernels are installed. The following command will do the job.

ls /boot | grep vmlinuz | cut -d'-' -f2,3

Your result should look something like this.

2.6.28-15
2.6.28-16
2.6.28-17

This is the list of kernels installed on your system. Now you want to find out which packages are installed relative to the kernel you want to remove. For my example I’m going to remove the oldest one, 2.6.28-15.

dpkg -l | grep ^ii | grep 2.6.28-15 | awk -F' ' '{ print $2 }'

On my system, (Jaunty) the resulting list is:

linux-headers-2.6.28-15
linux-headers-2.6.28-15-generic
linux-image-2.6.28-15-generic
linux-restricted-modules-2.6.28-15-generic

Now that we know what packages to remove we can remove them with dpkg, apt-get or aptitude.

sudo aptitude remove linux-headers-2.6.28-15 linux-headers-2.6.28-15-generic linux-image-2.6.28-15-generic linux-restricted-modules-2.6.28-15-generic

That’s it. You’ve removed an old kernel and related packages. Now you can keep your system as clean as it is right after you install Ubuntu. The commands are a bit complex, so maybe I’ll write up a bash script when I have some time. Proceed with caution!

30 thoughts on “Remove Old Kernels in Ubuntu

  1. the.helped

    Thank you for this article. I wrote the following script and maybe some others find it useful.
    [term]

    
    #!/bin/bash
    echo 'You are currently running: '`uname -r`
    echo 'The following kernel images exist in /boot:'
    ls /boot|grep vmlinuz|cut -d'-' -f2,3
    nKerns=`ls /boot|grep vmlinuz|wc -l`
    if [ $nKerns -gt 1 ]
    then
      # Ok to remove the oldest ONE
      oKern=`ls /boot|grep vmlinuz|cut -d'-' -f2,3|head -1`
      echo "The oldest kernel: $oKern will be removed."
      rempkgs=`dpkg -l|grep ^ii|grep $oKern|awk -F' ' '{print $2}'`
      echo 'You will now require the SUDO (root) password to complete:'
      sudo aptitude remove $rempkgs
      echo 'Kernel cleanup completed.'
    else
      # Prevent the user from self-nuking!
      echo '*** WARNING ***'
      echo 'This is the ONLY kernel and you must keep it!'
      echo 'Without a kernel you have no Linux system!'
    fi
    

    [/term]

    Reply
    1. EdMeade

      the.helped,

      Thanks. I did find it helpful. I understood what was going on and liked the fact that I could remove one kernel at a time — just to give me a warm fuzzy.

      Reply
    2. zen

      I’ve slightly modified your script to get a prompt before running the cleanup.

      Here is the code:
      [term]

      #!/bin/bash
      echo 'You are currently running: '`uname -r`
      echo 'The following kernel images exist in /boot:'
      ls /boot|grep vmlinuz|cut -d'-' -f2,3
      nKerns=`ls /boot|grep vmlinuz|wc -l`
      if [ $nKerns -gt 1 ]
      then
      # Ok to remove the oldest ONE
      oKern=`ls /boot|grep vmlinuz|cut -d'-' -f2,3|head -1`
      echo "The oldest kernel: $oKern will be removed."
      echo "Do you want to continue?"
      select yn in "Yes" "No"; do
        case $yn in
          Yes ) echo "Proceed";break;;
          No ) exit;;
        esac
      done
      rempkgs=`dpkg -l|grep ^ii|grep $oKern|awk -F' ' '{print $2}'`
      echo 'You will now require the SUDO (root) password to complete:'
      sudo aptitude remove $rempkgs
      echo 'Kernel cleanup completed.'
      else
      # Prevent the user from self-nuking!
      echo '*** WARNING ***'
      echo 'This is the ONLY kernel and you must keep it!'
      echo 'Without a kernel you have no Linux system!'
      fi
      

      [/term]
      Hope it will helps!

      Bye

      Reply
  2. Tim Miller Dyck

    Hi d4, thanks for that idea.

    When I tried it, aptitude was prompting for a confirmation and then quitting when it did not get the confirmation, so I needed to add “–assume-yes”.

    dpkg -l | grep ^ii | grep “linux-image-[0-9]” | awk -F’ ‘ ‘{ print $2 }’ | grep -v `uname -r` | sed ‘$d’ | sed ‘$d’ | sed ‘s/linux-image//’ | xargs -i echo “linux-image{} linux-headers{}” | xargs sudo aptitude –assume-yes purge

    Regards,
    Tim Miller Dyck

    Reply
  3. d4

    And here is on small script to only keep the currently running kernel and the two most recent ones:

    dpkg -l | grep ^ii | grep “linux-image-[0-9]” | awk -F’ ‘ ‘{ print $2 }’ | grep -v `uname -r` | sed ‘$d’ | sed ‘$d’ | sed ‘s/linux-image//’ | xargs -i echo “linux-image{} linux-headers{}” | xargs sudo aptitude purge

    Reply
  4. Pingback: How to: Removing old kernels in Ubuntu « Azare's Blog

  5. techjacker

    brilliant guide thanks very much!

    if anyone gets an error about grub when they remove an image eg:
    The link /vmlinuz.old is a damaged link
    Removing symbolic link vmlinuz.old
    you may need to re-run your boot loader[grub]

    then make sure you run this command before you restart!
    sudo update-grub

    Reply
  6. Hans Lambermont

    This one-liner also removes the headers of the current running kernel:
    linux-headers-2.6.32-24 for uname -r = 2.6.32-24-generic-pae

    Adding ‘s/-[^0-9].*//’ to the line fixes this :

    dpkg -l ‘linux-*’ | sed ‘/^ii/!d;/'”$(uname -r | sed ‘s/-[^0-9].*//’;”s/\(.*\)-\([^0-9]\+\)/\1/”)”‘/d;s/^[^ ]* [^ ]* \([^ ]*\).*/\1/;/[0-9]/!d’ | xargs sudo apt-get -y purge

    Reply
  7. Dawie Joubert

    I found this script on the net some time ago, works wonders:

    [term]dpkg -l ‘linux-*’ | sed ‘/^ii/!d;/'”$(uname -r | sed “s/\(.*\)-\([^0-9]\+\)/\1/”)”‘/d;s/^[^ ]* [^ ]* \([^ ]*\).*/\1/;/[0-9]/!d’ | xargs sudo apt-get -y purge[/term]

    Reply
    1. Linerd Post author

      Yep, that’s the same one that Zach posted above. It removes all but the most recent kernel (I think. I’m not sure if avoids removing the currently running kernel, or if it avoids removing the latest).

      Reply
  8. Mez

    Or far more user-friendly, you can just search for “linux” into synaptic and uninstall the older kernels and related packages…

    Reply
  9. Pingback: Remove Old Kernels in Ubuntu | Ubuntu-News - Your one stop for news about Ubuntu

  10. Pingback: Links 07/12/2009: Chrome OS Adds 64-bit and VM Support, Linux Graphics Survey Results Analysed | Boycott Novell

  11. Zach

    I had previously found this in a bug report on launchpad. Does about the same thing.

    dpkg -l 'linux-*' | sed '/^ii/!d;/'"$(uname -r | sed "s/\(.*\)-\([^0-9]\+\)/\1/")"'/d;s/^[^ ]* [^ ]* \([^ ]*\).*/\1/;/[0-9]/!d' | xargs sudo apt-get -y purge
    Reply
    1. Linerd Post author

      Zach – Wow, that’s one monster of a command! That one is going to take a while to digest. It looks like the uname -r | sed part of the command filters out the current kernel and then only the older kernels are fed into the apt-get purge command.

      I might suggest removing the -y from the final portion of the command to run apt-get interactively.

      Reply
  12. Zach

    Oh and also, you can just comment out the relevant lines in /etc/apt/apt.conf.d/01autoremove to have your package manager do this for you. I’d consider this this the preferred method.

    Reply
    1. Linerd Post author

      Zach – Another nice tip. If I comment the lines
      “^linux-image.*”;
      “^linux-restricted-modules.*”;
      “^linux-ubuntu-modules-.*”;
      would the old kernels be removed automatically, or would I have to run
      sudo apt-get autoremove

      Reply
  13. Pingback: fsdaily.com

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.