Views:
3,074
Votes: 3
Tags:
18.04
power-management
cpu
overheating
tlp
Link:
🔍 See Original Answer on Ask Ubuntu ⧉ 🔗
URL:
https://askubuntu.com/q/1069961
Title:
Power Management governor changes alone from powersave to performance
ID:
/2018/08/29/Power-Management-governor-changes-alone-from-powersave-to-performance
Created:
August 29, 2018
Upload:
September 15, 2024
Layout: post
TOC:
false
Navigation: false
Copy to clipboard: false
Force to powersave
speed governor
You are using sudo tlp stat -p
to find out when the speed governor is set at performance
mode. When this happens reset it to powersave
with this command:
$ echo "powersave" | sudo tee /sys/devices/system/cpu/cpu*/cpufreq/scaling_governor
powersave
Run tlp
statistics again and ensure minimum frequency is normalized and no longer set at maximum frequency.
Keep running tlp
to find out how often the governor is being reset to performance
mode.
Keep searching for the program that is reseting the speed governor.
As a last resort you could:
- Setup a sleeping procedure to reset to
powersave
every x seconds. - Setup a procedure that monitors the speed governor every second and reset it when it changes.