Debian 11 升级内核

MX Lv3

cat /etc/os-release 查看版本

1
2
3
4
5
6
7
8
9
10
root@debian:~#  cat /etc/os-release
PRETTY_NAME="Debian GNU/Linux 11 (bullseye)"
NAME="Debian GNU/Linux"
VERSION_ID="11"
VERSION="11 (bullseye)"
VERSION_CODENAME=bullseye
ID=debian
HOME_URL="https://www.debian.org/"
SUPPORT_URL="https://www.debian.org/support"
BUG_REPORT_URL="https://bugs.debian.org/"

运行命令升级内核:

1
2
3
sudo apt-get update && sudo apt-get dist-upgrade
apt -t bullseye-backports install linux-image-amd64
apt -t bullseye-backports install linux-headers-amd64

重启系统:

1
sudo reboot

查看内核版本:

1
uname -r
  • 标题: Debian 11 升级内核
  • 作者: MX
  • 创建于 : 2023-03-09 10:18:00
  • 更新于 : 2024-11-29 13:40:36
  • 链接: https://www.convolution.fun/2023/03/09/202303091018/
  • 版权声明: 本文章采用 CC BY-NC-SA 4.0 进行许可。
评论
目录
Debian 11 升级内核