$ cd ../
$ cat /backups/brain/
0009
Set CPU Governor
1
2
3
4
5
6
7
8
9
[ecomaikgolf@laptop ~/]$ sudo cpupower frequency-set -g performance
Setting cpu: 0
Setting cpu: 1
Setting cpu: 2
Setting cpu: 3
Setting cpu: 4
Setting cpu: 5
Setting cpu: 6
Setting cpu: 7
  • performance Run the CPU at the maximum frequency, obtained from /sys/devices/system/cpu/cpuX/cpufreq/scaling_max_freq.
  • powersave Run the CPU at the minimum frequency, obtained from /sys/devices/system/cpu/cpuX/cpufreq/scaling_min_freq.
  • userspace Run the CPU at user specified frequencies, configurable via /sys/devices/system/cpu/cpuX/cpufreq/scaling_setspeed.
  • ondemand Scales the frequency dynamically according to current load. Jumps to the highest frequency and then possibly back off as the idle time increases.
  • conservative Scales the frequency dynamically according to current load. Scales the frequency more gradually than ondemand.
  • schedutil Scheduler-driven CPU frequency selection
$ cd ../