赞
踩
every blog every motto: You can do more than you think.
https://blog.csdn.net/weixin_39190382?type=blog
ubuntu 22.04 安装指定内核
查看已安装的内核镜像
dpkg --get-selections | grep linux-image
sudo apt-get install linux-image-5.4.0-99-generic
sudo apt-get install linux-headers-5.4.0-99-generic
sudo apt-get install linux-modules-5.4.0-99-generic
sudo apt-get install linux-modules-extra-5.4.0-99-generic
出现问题修复:
sudo apt --fix-broken install
检查是否安装成功
dpkg -l | grep 5.4.0-99-generic
安装完成后修改配置
sudo vim /etc/default/grub
找到GRUB_DEFAULT=0,修改为:
GRUB_DEFAULT="Advanced options for Ubuntu>Ubuntu,with Linux 5.4.0-99-generic"
保存退出后:
sudo update-grub
更新完成后重新启动
sudo reboot
查看是否安装成功
uname -r
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。