A simple Linux script to enable Intel Turbo Boost on systems using the intel_pstate
frequency driver.
This script enables Intel Turbo Boost technology on supported Linux distributions. It can be used with systemd, or manually through other startup mechanisms.
To check if your system supports the intel_pstate
driver, run:
cat /sys/devices/system/cpu/cpu*/cpufreq/scaling_driver
If all outputs return intel_pstate
, your system is compatible.
- Clone the repo and enter the folder:
git clone https://github.com/LDrawe/intel-turbo.git
cd intel-turbo
-
Copy the files and ensure the script has execution permissions:
sudo cp -r opt/intel /opt/ sudo cp etc/systemd/system/intel-turbo.service /etc/systemd/system/ sudo chmod +x /opt/intel/intel_turbo.sh
-
To automatically enable Turbo Boost at startup:
sudo systemctl enable --now intel-turbo.service
-
(Optional) Check the service status:
sudo systemctl status intel-turbo.service
-
You can verify the Turbo Boost status at any time with:
cat /sys/devices/system/cpu/intel_pstate/no_turbo
0
: Turbo Boost is enabled1
: Turbo Boost is disabled
If your system uses OpenRC, runit, s6, or other init systems, you can still use the script manually or set it to run at startup via alternative methods.
sudo /opt/intel/intel_turbo.sh
-
Ensure
cronie
is installed:-
Debian/Ubuntu:
sudo apt install cronie
-
Fedora/RHEL:
sudo yum install cronie
-
Arch Linux:
sudo pacman -S cronie
-
-
Verify installation:
crond -V
-
Edit the crontab:
crontab -e
-
Add the following line to enable Turbo Boost at startup:
@reboot sh /opt/intel/intel_turbo.sh
-
Disable and stop the service:
sudo systemctl disable --now intel-turbo.service
-
Mask the service to prevent accidental activation:
sudo systemctl mask intel-turbo.service
-
Remove installed files:
sudo rm -r /opt/intel/ sudo rm /etc/systemd/system/intel-turbo.service
-
Reboot to apply changes.
-
Remove the
@reboot
line from the crontab:crontab -e
-
Delete installed files:
sudo rm -r /opt/intel/
This project is a fork of the original intel-turbo script by @ShyVortex, modified to enable Intel Turbo Boost instead of disabling it.
Fork maintained by @LDrawe.
- Licensed under the GNU General Public License v3.0.
- Copyright © @ShyVortex, 2023.
- Copyright © @LDrawe, 2025 — modifications to enable Turbo Boost.