删除 usr/lib/modules 下的旧文件是否正确/可取,如果是,如何删除这些目录。
drwxr-xr-x 5 root root 4096 2022 年 3 月 3 日 5.4.0-100-generic
drwxr-xr-x 5 root root 4096 2022 年 5 月 2 日 5.4.0-109-generic
drwxr-xr-x 5 root root 4096 11月17日 11:54 5.4.0-131-generic
drwxr-xr-x 5 root root 4096 2021 年 1 月 14 日 5.4.0-42-generic
drwxr-xr-x 5 root root 4096 2021 年 1 月 19 日 5.4.0-62-generic
drwxr-xr-x 5 root root 4096 2022 年 2 月 24 日 5.4.0-88-generic
答案1
有时旧的模块目录不会被清除,甚至不会被自动删除。这些可能在 dpkg -l linux- 中显示为“rc”状态。如果您无法清除软件包,请具体执行以下操作:
sudo apt purge 5.4.0-88-generic
要摆脱它们,只需删除它们。从 /lib/modules 目录中,您可以递归地删除它们:
sudo rm -rf 5.4.0-88-generic
ETC。