Support #836
Enable Fan Control Support on Arch Linux
Description
I recently needed to add fan control support to a Dell Inspiron on Arch Linux in order to get the fans to idle properly. This is a guide on how I set up the Fan Control.
Prepare the Environment¶
- Make sure the system is up to date:
pacman -Syu
- Install yaourt
Install i8kutils¶
- Install i8kutils from the AUR:
yaourt -S i8kutils
- Edit the i8kmon config:
sudo nano /etc/i8kutils/i8kmon.conf:
- Enable the fan control option permanently:
set config(auto) 1
- Enable the fan control option permanently:
i8kmon Service¶
- Create the i8kmon.service file:
sudo nano /etc/systemd/system/i8kmon.service
- And add the following:
[Unit] Description=i8kmon [Service] ExecStart=/usr/bin/i8kmon -d Restart=always RestartSec=5 [Install] WantedBy=multi-user.target
- And add the following:
Resources¶
Updated by Daniel Curtis about 8 years ago
- Description updated (diff)
- Status changed from New to Resolved
- % Done changed from 0 to 100