Debian更新Kernel核心方法 2025-07-02 Website News 暂无评论 89 次阅读 1. 确认目前内核版本: ``` uname -a ``` 2. 更新源信息,开始看装指定版本内核: ``` apt update apt install linux-image-5.10.0-0.deb10.30-cloud-amd64 apt install linux-image-5.10.0-0.deb10.30-cloud-amd64 update-grub ``` 3. 重启服务器 ``` shutdown -r now ``` 4. 确认内核 ``` uname -r ``` 5. 卸载旧内核 ``` dpkg --list | grep linux-image apt purge linux-image-*.**.*-**-cloud-amd64 ``` 6. 卸载旧头文件 ``` dpkg --list | grep linux-headers apt purge linux-headers-*.**.*-**-amd64 ``` 参考文献:https://xujinzh.github.io/2022/02/14/update-debian-kernel/index.html 标签: none 本作品采用 知识共享署名-相同方式共享 4.0 国际许可协议 进行许可。
评论已关闭