[Share Experiences] 查看、安装、卸载内核
Tofloor
poster avatar
la
deepin
2022-09-28 16:10
Author

查看当前在用内核

uname -r

卸载内核,至少留1个

1.展示所有安装的内核

dpkg --get-selections| grep linux

2.选择不要的进行卸载

这里headers和image两个文件要替换为自己的卸载对象,可从上面列表复制,中间空格隔开

sudo apt purge linux-headers-5.10.101-amd64-desktop linux-image-5.10.101-amd64-desktop

安装内核

1.若安装指定内核

需要自己查询版本号

sudo apt install linux-image-5.18.4-amd64-desktop-hwe linux-headers-5.18.4-amd64-desktop-hwe

2.若安装LTS内核

sudo apt install linux-image-deepin-amd64 linux-headers-deepin-amd64 

3.若安装stable内核

sudo apt install linux-image-deepin-stable-amd64 linux-headers-deepin-stable-amd64  

如果有多个内核,系统默认启动版本最高


想修改默认启动版本的请看评论区大佬。友情提示,谨慎操作

Reply Favorite View the author
All Replies
ljq790615
deepin
2022-09-28 16:16
#1

收藏备用

Reply View the author
xuqi
deepin testing team
2022-09-28 16:29
#2

like

Reply View the author
jjcui8595
deepin
2022-09-28 17:00
#3

like

Reply View the author
186******75
deepin
2022-09-28 17:23
#4

怎么修改默认不是最高核启动了?

Reply View the author
la
deepin
2022-09-28 17:24
#5
186******75

怎么修改默认不是最高核启动了?

这个好像没办法,要不删了吧

Reply View the author
186******75
deepin
2022-09-28 17:30
#6
la

这个好像没办法,要不删了吧

虽然我不会,但从理论上讲,这个是可以实现的,电脑本来就是一个程序,程序可以修改的

Reply View the author
晚秋(lateautumn)
Moderator
2022-09-28 17:40
#7

已收藏,谢谢分享kissing_heart

Reply View the author
云的眼泪
deepin
2022-09-28 17:57
#8
186******75

怎么修改默认不是最高核启动了?

编辑/boot/grub目录中的grub.cfg文件

找到menuentry,将这部分中的高版本号替换成低版本的。

具体名字在/boot目录下,看属性就可以看到详细信息。

image.png

image.png

image.png

Reply View the author
la
deepin
2022-09-28 17:59
#9
186******75

虽然我不会,但从理论上讲,这个是可以实现的,电脑本来就是一个程序,程序可以修改的

非要搞当然是可以的,但需要手动改文件

我只是觉得手动改grub不好

Reply View the author
184******08
deepin
2022-09-28 18:14
#10

方式二

使用命令行来到/boot目录:

cd /boot

rm -r 文件名

可以使用通配符来删除:

sudo rm 5.4.70

在来到/lib/modules/目录下,把不要的版本文件删除:

cd

/lib/modules

rm -r 文件名

查看一下/usr/src有没有源码文件,如果有,不再使用了就把源码也删除。

更新一下启动项:

sudo update-grub

至此,目的达到。

Reply View the author
kingskill
deepin
2022-09-28 21:28
#11
la

这个好像没办法,要不删了吧

你们不晓得有个软件叫Grub Customizer吗?pride

Reply View the author
la
deepin
2022-09-29 01:25
#12
kingskill

你们不晓得有个软件叫Grub Customizer吗?pride

只是随便使用的小白啦。tail

偶尔收集点东西,方便日后查找

Reply View the author
ThinKinG
deepin testing team
2022-10-08 21:46
#13

like

Reply View the author
Reid
deepin
2023-01-11 19:07
#14

agree

Reply View the author
Sunny
deepin
2023-03-23 19:19
#15

收藏

Reply View the author