Arch Linux CPU Governor Guide
INFO
This guide helps improve either performance or battery life on Arch Linux.
1. Display Governor
Display Current Governor:
bashcat /sys/devices/system/cpu/cpu*/cpufreq/scaling_governor
Display Available Governors:
bashcat /sys/devices/system/cpu/cpu*/cpufreq/scaling_available_governors
2. Change Governor
TIP
Balance performance and battery use by adjusting the CPU governor.
Install
cpupower
:bashsudo pacman -S cpupower
Set CPU governor:
For battery efficiency:
bashsudo cpupower frequency-set -g schedutil
For performance:
bashsudo cpupower frequency-set -g performance
Make the governor setting persistent:
Edit the
cpupower
configuration:bashsudo nano /etc/default/cpupower
Add
GOVERNOR="schedutil"
orGOVERNOR="performance"
.Enable and start the service:
bashsudo systemctl enable cpupower --now