Created
December 26, 2022 15:32
-
-
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
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 | |
# 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