/ boot继续高于90%

我检查了我安装的内核

www-data@May:~$ dpkg -l linux-image-\* | grep ^ii ii linux-image-3.13.0-57-generic 3.13.0-57.95 amd64 Linux kernel image for version 3.13.0 on 64 bit x86 SMP ii linux-image-3.13.0-61-generic 3.13.0-61.100 amd64 Linux kernel image for version 3.13.0 on 64 bit x86 SMP ii linux-image-extra-3.13.0-57-generic 3.13.0-57.95 amd64 Linux kernel extra modules for version 3.13.0 on 64 bit x86 SMP ii linux-image-extra-3.13.0-61-generic 3.13.0-61.100 amd64 Linux kernel extra modules for version 3.13.0 on 64 bit x86 SMP ii linux-image-generic 3.13.0.61.68 amd64 Generic Linux kernel image 

我检查了我的靴子

 www-data@May:~$ ls /boot/ System.map-3.13.0-57-generic grub memtest86+.elf System.map-3.13.0-61-generic initrd.img-3.13.0-55-generic memtest86+_multiboot.bin abi-3.13.0-57-generic initrd.img-3.13.0-57-generic vmlinuz-3.13.0-57-generic abi-3.13.0-61-generic initrd.img-3.13.0-61-generic vmlinuz-3.13.0-61-generic config-3.13.0-57-generic lost+found config-3.13.0-61-generic memtest86+.bin 

以上就是我在运行sudo apt-get autoremove

我仍然有超过90%的启动使用率。

请指教。

还有许多其他特定于内核的包。 你应该sudo apt-get remove过时的。 以下是我找到过时包的方法:

 # first, use the current kernel version (DO NOT REMOVE YOUR CURRENT KERNEL) # to get a list of installed packages with the same version number. dpkg -l | fgrep $(uname -r | sed -e 's/-generic//') | egrep '^ii' # Then, inspecting the output, and manually selecting non-version # substrings, construct a regular expression for egrep. I got: dpkg -l | egrep 'linux-tools-|linux-source-|linux-libc-dev|linux-image-|linux-headers-'| egrep -v $(uname -r | sed -e 's/-generic//') 

这将生成sudo apt-get remove的候选列表。 从此列表中删除当前内核及其所有类似版本的亲(我在上一个egrep )和之前的N个版本。 从N = 3开始,谨慎使用N = 2,并尽量避免N = 1的情况。

不要删除当前的内核