如何在 Ubuntu 20.04 中向内核传递参数?

如何在 Ubuntu 20.04 中向内核传递参数?

如果 intel_pstate=passive,则使用此模式参数在命令行中传递给内核(这也暗示了 intel_pstate=no_hwp 设置)。与没有 HWP 支持的活动模式一样,在此模式下,如果 intel_pstate 无法识别给定的处理器,则可能会拒绝与其一起工作。

https://www.kernel.org/doc/html/v4.12/admin-guide/pm/intel_pstate.html#passive-mode

我不知道command line它指的是什么。它可能是 bash 中的 shell,但我假设这是你在 grub 中执行的操作。简而言之,我不确定。

问题:

  1. 我如何将该参数传递passiveintel_pstate内核?
  2. 我如何知道的当前值是多少intel_pstate

答案1

在 Ubuntu 中,您可以在 grub 中添加内核参数。

编辑/etc/default/grub并添加例如intel_pstate=passiveGRUB_CMDLINE_LINUX_DEFAULT

例子:

GRUB_CMDLINE_LINUX_DEFAULT="quiet splash intel_pstate=passive"

要应用此设置运行

sudo update-grub

重启后即可使用。

您可以通过以下方式检查当前状态

cat /sys/devices/system/cpu/intel_pstate/status

相关内容