Now if you don't want the old kernels anymore then use the command below to remove the old kernel which you wish to remove.
$ sudo apt-get remove --purge 2.6.28-11* replace 2.6.28-11 with the version you wish to remove.
Hope this helps...
Get tips on any operations or functions done on or by the linux operating systems, debian, ubuntu, fedora etc..
$ sudo apt-get remove --purge 2.6.28-11* replace 2.6.28-11 with the version you wish to remove.
Linux Tips Copyright © 2010 Dipin Krishna @ Linuxense
3 comments:
how to install a new kernal
see http://blog.dipinkrishna.info/2009/08/kernelcheck-kernel-compiling-process-as.html for an easy and graphical interface to install kernels.
OLDKERNELS=$(dpkg -l|awk '{print $2}'|grep -E $LINUXPKG |grep -vE $METALINUXPKG|grep -v $CURKERNEL)
sudo aptitude purge $OLDKERNELS
Post a Comment