Last active
December 19, 2024 18:24
-
-
Save sykwer/262697e6fd772921f99f2e9c69062cc2 to your computer and use it in GitHub Desktop.
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
for i in /sys/devices/system/cpu/cpu*/cpufreq/scaling_governor; do | |
echo "userspace" | sudo tee $i; | |
done | |
cat /sys/devices/system/cpu/cpu*/cpufreq/scaling_available_frequencies | |
for i in /sys/devices/system/cpu/cpu*/cpufreq/scaling_setspeed; do | |
echo 2601000 | sudo tee $i; | |
done | |
sudo sh -c "echo 0 > /sys/devices/system/cpu/cpufreq/boost" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Set a boot parameter at
/etc/default/grub
as follows.