ubuntu删除内核,安装内核方法
删除内核:1.dpkg --get-selections | grep linux #查看自己已经安装的内核有那些比如我想卸载linux-headers-4.15.0-128-lowlatency,那么接下来用这个命令卸载:2.sudo apt-get purge linux-headers-4.15.0-128-lowlatency linux-image-4.15.0-128-lowlaten
·
删除内核:
1.dpkg --get-selections | grep linux #查看自己已经安装的内核有那些
比如我想卸载linux-headers-4.15.0-128-lowlatency,那么接下来用这个命令卸载:
2.sudo apt-get purge linux-headers-4.15.0-128-lowlatency linux-image-4.15.0-128-lowlatency #其实就是把与那个lowtatency相关的内核都删除掉
3.sudo update-grub#更新下grub就OK了
安装新内核:
首先利用apt-cache search 下你可以安装的所有的内核有哪些:
1.apt-cache search linux | grep lowlatency #注意,这里的grep你可以不用,因为我这里演示的是安装lowlatency版本的内核
比如要选择安装的内核是:linux-image-4.15.0-128-lowlatency,那么我需要做的事情是:
2.sudo apt-get install linux-image-4.15.0-128-lowlatency linux-headers-4.15.0-128-lowlatency#其实就是安装一个image加一个headers
3.sudo update-grub#更新下grub,安装OK
更多推荐
已为社区贡献1条内容
所有评论(0)