Skip to content

Instantly share code, notes, and snippets.

@tuxology
Last active December 8, 2016 22:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save tuxology/c5868b70b0b3c57edf634a6643fa3c27 to your computer and use it in GitHub Desktop.
Save tuxology/c5868b70b0b3c57edf634a6643fa3c27 to your computer and use it in GitHub Desktop.
Disable CPU Scaling
#!/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