apt-get autoremove 想要删除 linux 标头

apt-get autoremove 想要删除 linux 标头

今天我运行apt-get autoremove删除不需要的软件包,但它却想linux-headers-3.2.0-37删除linux-headers-3.2.0-37-generic

Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following packages will be REMOVED:
libglademm-2.4-1c2a linux-headers-3.2.0-37 linux-headers-3.2.0-37-generic ttf-umefont    ttf-unfonts-core
0 upgraded, 0 newly installed, 5 to remove and 0 not upgraded.
After this operation, 67.6 MB disk space will be freed.
Do you want to continue [Y/n]? 

删除这些文件安全吗?我安装的内核比自动删除列出的标头版本新。

uname -r
3.2.0-38-generic

答案1

是的,由于您使用的是更高的内核,因此可以安全地删除旧内核和标头。

答案2

这显然是安全的,因为它不是同一个版本。但是你可以检查是否安装了适合你的版本的头文件3.2.0-38-通用使用以下命令:apt-cache policy linux-headers-3.2.0-38-generic

相关内容