使用Ubuntu一段时间后,就会发觉由于自动升级,系统里安装了很多内核。像我,竟然安装了下面那么多,这个造成了漫长的启动列表。必须删掉一些不用的。

  首先就是使用如下命令,列出所有安装的内核,下表中,带有p_w_picpath的就是内核文件。从中选择要卸载的包,用apt-get来卸载
admingu@andy:~$ dpkg --get-selections|grep linux
libselinux1                   install
linux-generic                   install
linux-headers-2.6.24-16               install
linux-headers-2.6.24-18               install
linux-headers-2.6.24-18-generic           install
linux-headers-2.6.24-19               install
linux-headers-2.6.24-19-generic           install
linux-headers-generic               install
linux-p_w_picpath-2.6.24-16-generic           deinstall
linux-p_w_picpath-2.6.24-18-generic           install
linux-p_w_picpath-2.6.24-19-generic           install
linux-p_w_picpath-generic               install
linux-libc-dev                   install
linux-restricted-modules-2.6.24-16-generic   deinstall
linux-restricted-modules-2.6.24-18-generic   install
linux-restricted-modules-2.6.24-19-generic   install
linux-restricted-modules-common           install
linux-restricted-modules-generic       install
linux-sound-base               install
linux-ubuntu-modules-2.6.24-16-generic       deinstall
linux-ubuntu-modules-2.6.24-18-generic       install
linux-ubuntu-modules-2.6.24-19-generic       install
util-linux                   install
util-linux-locales               install

  具体的卸载方法为

  sudo apt-get remove linux-p_w_picpath-2.6.24-16-generic

        sudo apt-get remove linux-headers-2.6.24-16-generic

  这样就可以实现自动删除内核文件了,还可以释放磁盘空间。

  另外还要记录一个命令。

  uname -a

  使用这个命令可以查看当前系统使用的内核。
卸载后,在启动菜单里还有其选项,这样我们需要修改启动菜单,
方法如下:用命令打开menu.lst

        sudo gedit /boot/grub/menu.lst

然后找到不需要的菜单将其删除即可,还要注意一点,记得修改default的值,修改默认启动项!