Move cpu governor info from notes to docs

This commit is contained in:
KemoNine 2020-07-31 23:46:04 +00:00
parent 28b986d9ad
commit 0f27a8ffbb
3 changed files with 12 additions and 9 deletions

View File

@ -7,3 +7,4 @@ This folder contains a bunch of general information on how to get the base of a
* [Setup swap (you really do need this)](swap.md)
* [journald Tweaks (make it less chatty and resource hungry)](journald.md)
* [Standard Raspberry Pi Toolchain Setup](rpi_tools.md)
* [CPU Governor](cpu_governor.md)

11
docs/cpu_governor.md Normal file
View File

@ -0,0 +1,11 @@
# CPU Governor
The below commands setup a CPU governor. This is to help reduce power consumption and ensure the Raspberry Pi stays as cold as possible.
``` sh
pacman -S cpupower
sed -i "s/#governor='ondemand'/governor='powersave'/g" /etc/default/cpupower
systemctl enable --now cpupower
```

View File

@ -1,12 +1,3 @@
########################################
# cpu power / governor
########################################
pacman -S cpupower
sed -i "s/#governor='ondemand'/governor='powersave'/g" /etc/default/cpupower
systemctl enable --now cpupower
########################################
# AUR package manager
########################################