Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save kerus1024/b6a934a473050efa981d2b14a7998016 to your computer and use it in GitHub Desktop.
Save kerus1024/b6a934a473050efa981d2b14a7998016 to your computer and use it in GitHub Desktop.
Debian Linux Reduce AMD CPU Power Consumption by using governor and disabling cpu boost
#!/bin/bash
# Set to Governor default
sudo apt-get update -y
sudo apt-get install -y cpufrequtils
# Disable AMD Boost
echo "0" | sudo tee /sys/devices/system/cpu/cpufreq/boost
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment