5

I need to delete older kernels from a server to make room for updating to a new one. I can't really use GUI-based methods like synaptic, and apt-get remove --purge didn't work.

What to do?

  • 3
    What do you mean by “apt-get remove --purge didn't work”? What command did you run, what happened? Be sure to copy-paste the command and any error message. – Gilles 'SO- stop being evil' May 16 '12 at 20:08
  • Can i know if your GUI is not at all working??(meaning you cant use my solution of an alternate gui tool) or is it that you are not able to use GUI tools like synaptic?? – Nirmik May 17 '12 at 06:27

4 Answers4

7

Create a shell script with this content:

#!/bin/sh
dpkg -l linux-*  | \
awk '/^ii/{ print $2}' | \
grep -v -e `uname -r | cut -f1,2 -d"-"` | \
grep  -e '[0-9]' | xargs sudo apt-get -y purge

This script will remove old kernels, headers and sources.

us3r
  • 2,667
1

Did you try to run

apt-get --purge autoremove

? That does the trick for me.

-1

This Article details for remove old kernel linux http://www.ibotme.com/knowledgebase/linux-existe-alguna-manera-de-ocultar-o-eliminar-las-versiones-anteriores-de-kernel/

LinuxUser
  • 134
-2

Download and install either of these from software center:

  • Janitor

  • Ubuntu Tweak(it has the janitor built in it)

Open Janitor(direct janitor or tweak), you will find "Old Kernel Packages" under "System". Tick mark on it and click 'Clean'

Enter the password and the old ones will be removed

Nirmik
  • 7,868