Skip to content

Instantly share code, notes, and snippets.

@cretudorin
Last active July 12, 2022 05:52
Show Gist options
  • Save cretudorin/53ecb97a390593e1c0001fc2e12a2583 to your computer and use it in GitHub Desktop.
Save cretudorin/53ecb97a390593e1c0001fc2e12a2583 to your computer and use it in GitHub Desktop.
Turn off status leds on raspberry change cpu governor
echo 0 >/sys/class/leds/led0/brightness
echo 0 >/sys/class/leds/led1/brightness
echo performance > /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor
echo performance > /sys/devices/system/cpu/cpu1/cpufreq/scaling_governor
echo performance > /sys/devices/system/cpu/cpu2/cpufreq/scaling_governor
echo performance > /sys/devices/system/cpu/cpu3/cpufreq/scaling_governor
exit 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment