如何在Ubuntu15.04中启用Intel_pstate?
发布于 2015-05-30 01:01:40
在15.04中,由于@solsTiCe内容丰富的注释,默认情况下它是启用的。你可以自己检查一下
如果grep -i pstate /boot/config-$(uname -r)
答应了,那就是这样。
要在Ubuntu14.04中启用intel_pstate,使用文本编辑器作为root编辑/etc/default/grub
配置文件
gksu gedit /etc/default/grub
对于"GRUB_CMDLINE_LINUX_DEFAULT=“,添加"intel_pstate=enable”如下:
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash intel_pstate=enable"
保存文件并更新Grub:
sudo update-grub
重新启动系统并检查是否启用了intel_pstate,请运行以下命令:
cat /sys/devices/system/cpu/cpu*/cpufreq/scaling_driver
上面的命令应该返回"intel_pstate“。
https://askubuntu.com/questions/630165
复制