标签 Linux Debian Ubuntu 下的文章

首先使用如下命令,查看当前系统使用的内核版本,,避免不必要的麻烦以防删错内核
root@debian8:~# uname -a

列出所有安装的内核
root@debian8:~# dpkg --get-selections|grep linux
linux-headers-2.6.32-32 install
linux-headers-2.6.32-32-generic install
linux-headers-generic install
linux-image-2.6.32-21-generic install

使用apt-get的卸载参数来删除旧内核
root@debian8:~# apt-get remove linux-image-2.6.32-21-generic

删除内核后,执行 update-grub 来更新grub启动菜单。

清除软件包配置
dpkg --purge `dpkg --get-selections | grep deinstall | cut -f1`;