如何在 ubuntu 18.04 上禁用 hwe-support?

如何在 ubuntu 18.04 上禁用 hwe-support?

操作系统是 Ubuntu 18.04.5

我想使用 GA 内核。

所以我做了这些操作:

it@it51:~$ sudo apt install linux-generic

然后重新启动机器。

我卸载了HWE内核:

it@it51:~$ sudo apt-get purge linux-image-generic-hwe-18.04
it@it51:~$ sudo apt-get remove linux-generic-hwe-18.04
it@it51:~$ sudo apt-get remove xserver-xorg-hwe-18.04

然后重新启动机器。

然后我使用这个命令:

it@it51:~$ sudo hwe-support-status
Your Hardware Enablement Stack (HWE) is supported until April 2023.

上面这段话(您的硬件支持堆栈(HWE)将支持到 2023 年 4 月)是否表明我没有成功禁用 hwe-support?

我可以使用什么方法成功禁用 hwe-support?

答案1

有一个页面ubuntu.com,其中详细介绍了如何降级到 20.04 的 GA 内核。他们没有针对 18.04 的具体说明,但它们看起来应该是相同的:

要从 HWE/OEM 降级到 GA 内核:

sudo apt install --install-recommends linux-generic 

如果需要 NVIDIA 驱动程序,请检查适当的级别并安装它们:

ubuntu-drivers list 

然后安装适当的 NNN 版本的驱动程序:

sudo apt install --install-recommends linux-modules-nvidia-NNN-generic 

重启,中断 grub,在高级选项中选择启动基于 5.4 的内核,完成启动。检查一切是否按预期运行。

如果一切顺利,您可以删除其他内核版本:

sudo apt remove --purge linux-generic-hwe-20.04 linux-oem-20.04 linux-hwe-* linux-oem-* linux-modules-5.1* linux-modules-5.8.0-* linux-modules-5.6.0-*

相关内容