Intel Turbo Boost no Linux

  • To always enable Turbo Boost:

    bash

    sudo auto-cpufreq --live --turbo always
    
    
  • To disable Turbo Boost:

    bash

    sudo auto-cpufreq --live --turbo never
    

permanent

/etc/auto-cpufreq.conf

[charger]
governor = performance
turbo = always

[battery]
governor = powersave
turbo = never

Qual sistema que você usa?

  1. Ensure snapd is installed on your system.

    • Ubuntu/Debian/Mint: snapd is usually pre-installed, or you can install it using sudo apt install snapd.

    • Fedora: sudo dnf install snapd.

    • Arch Linux: Install snapd from the AUR and enable the systemd socket.

  2. Install auto-cpufreq using the snap command:

    bash

    sudo snap install auto-cpufreq
    
    
  3. Install the daemon: Once the snap is installed, you still need to install the daemon for permanent optimization.

    bash

    sudo auto-cpufreq --install
    

Pós instalação, caso use o serviço ppd

sudo systemctl mask power-profiles-daemon.service

2 curtidas