Last active
December 8, 2016 22:53
-
-
Save tuxology/c5868b70b0b3c57edf634a6643fa3c27 to your computer and use it in GitHub Desktop.
Disable CPU Scaling
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# For more info : https://wiki.archlinux.org/index.php/CPU_frequency_scaling | |
set_scaling_gov() { | |
gov=${1-performance} | |
for i in $(ls -1 /sys/devices/system/cpu/cpu*/cpufreq/scaling_governor); do | |
echo ${gov} | sudo tee $i > /dev/null | |
done | |
} | |
set_scaling_gov |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment