如何在 Centos 6 中禁用 Meltdown 和 Spectre 补丁?

如何在 Centos 6 中禁用 Meltdown 和 Spectre 补丁?

我想知道如何禁用 Centos 6 中的 Meltdown/Spectre 补丁?

各种教程都提到了 Grub2 和重新编译,但在 Centos 6 中,我没有这个。

/boot/grub我可以在目录中编辑 grub.conf 文件

我已经运行了命令for f in /sys/devices/system/cpu/vulnerabilities/*; do echo "${f##*/} -" $(cat "$f"); done

输出:

meltdown - Mitigation: PTI
spectre_v1 - Mitigation: Load fences
spectre_v2 - Mitigation: Full retpoline

内核版本是:2.6.32-696.23.1.el6.x86_64

在 ubuntu 和 grub2 中,它指的是更新GRUB_CMDLINE_LINUX_DEFAULT=,但我相信这是 GRUB2。

如有任何建议,我们将非常感激。

答案1

在 /boot/grub/grub.conf 中的内核行上,添加:mitigations=off

相关内容