1. Disable intel_pstate in grub configure file:

    $ sudo vi /etc/default/grub
    

    Append "intel_pstate=disable" to GRUB_CMDLINE_LINUX= option

  2. Refresh grub boot configuration file:

    For Ubuntu:

    $ sudo update-grub
    

    For Fedora:

    $ sudo grub2-mkconfig -o /boot/grub2/grub.cfg
    
  3. Reboot.

    $ sudo reboot
    
  4. Set CPU power governor to userspace:

    $ sudo cpupower frequency-set --governor userspace
    
  5. Set CPU frequency:

    $ sudo cpupower --cpu all frequency-set --freq 1.5GHz
    
  6. Verify:

    $ cpupower frequency-info
    

    You should see line: "current CPU frequency is 1.50 GHz."

 

如果上述方法没有作用,再进入/boot/grub2/grub.cfg中查看,是否有intel_pstate=disable。如果没有,添加上。

 

如果还是没有用

 For BIOS install:

Code: grub2-mkconfig -o /boot/grub2/grub.cfg

For UEFI install: Code: grub2-mkconfig -o /boot/efi/EFI/fedora/grub.cfg 

 

在linuxefi之后添加intel_pstate=disable。

相关文章:

  • 2022-12-23
  • 2022-02-21
  • 2021-07-20
  • 2021-12-19
  • 2021-10-28
  • 2021-08-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-09-09
  • 2022-12-23
  • 2022-02-26
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案