Debian 升级内核
确认Debian版本 首先确认Debian版本,是10还是11 添加debian源时 Debian11 使用 bullseye-backports main Debian10 则使用 buster-backports main 添加Debian源 这里使用境内的加速镜像 echo "deb http://ftp.cn.debian.org/debian bullseye-backports main" > /etc/apt/sources.list.d/backports.list apt update 安装更新内核 apt -t bullseye-backports install linux-image-amd64 apt -t bullseye-backports install linux-headers-amd64 update-grub 查询内核列表 使用 dpkg --list | grep linux-image ...