There is a fancontrol tool in Linux (Debian included), but it has no GUI. Nevertheless, it's more convenient and safe to let your motherboard control your fans, otherwise it's an easiest way to burn something inside your PC. Personally, I let my motherboard control fans in my PC, and I monitor their speeds using lm-sensors and conky GUI. Answer from Aristeo812 on reddit.com
๐ŸŒ
Debian Manpages
manpages.debian.org โ€บ unstable โ€บ fancontrol โ€บ fancontrol.8.en.html
fancontrol(8) โ€” fancontrol โ€” Debian unstable โ€” Debian Manpages
April 12, 2025 - It reads its configuration from a file, then calculates fan speeds from temperatures and sets the corresponding PWM outputs to the computed values.
๐ŸŒ
Stack Exchange
unix.stackexchange.com โ€บ questions โ€บ 590307 โ€บ how-to-manually-set-cpu-fan-speed-in-debian-linux
How to manually set CPU Fan Speed in Debian Linux? - Unix & Linux Stack Exchange
June 1, 2020 - I then ran the fancontrol configuration script with pwmconfig: hwmon0 is it8620 hwmon1 is k10temp hwmon2 is fam15h_power hwmon3 is radeon Found the following PWM controls: hwmon0/pwm1 current value: 0 hwmon0/pwm2 current value: 0 hwmon0/pwm3 current value: 0 hwmon0/pwm4 current value: 255 hwmon0/pwm5 current value: 255 Giving the fans some time to reach full speed...
Discussions

Fan control software for Linux?
There is a fancontrol tool in Linux (Debian included), but it has no GUI. Nevertheless, it's more convenient and safe to let your motherboard control your fans, otherwise it's an easiest way to burn something inside your PC. Personally, I let my motherboard control fans in my PC, and I monitor their speeds using lm-sensors and conky GUI. More on reddit.com
๐ŸŒ r/linux4noobs
31
84
June 6, 2022
[Help needed] Fan control on headless linux server
Apparently you need to upgrade to a very recent kernel version: https://www.phoronix.com/news/Intel-GPU-Fan-Speed-Linux More on reddit.com
๐ŸŒ r/debian
10
1
November 25, 2024
Heya, need a good way to control fan curve on Linux - NVIDIA
Nvidia added a better API to control fans over a year ago but no one has stepped up to modify GWE to use it. More on reddit.com
๐ŸŒ r/linux_gaming
34
3
February 26, 2024
Thinkpad Fan Control on Linux - Software
Hi, In linux you can use thinkfan. I use ubuntu and it is available from the official repositories. It has no GUI but it is not difficult to configure. This guide (although for Fedora) can help you set it up: https://gist.github.com/abn/de81ba413f860b00c2db3ee4aa83e035 For undervolting I have used this: https://github.com/georgewhewell/undervolt Again, command line only. Hope this helps you. I have been running both for 1 year in Ubuntu (now 19.10) and I am pretty pleased with the results More on reddit.com
๐ŸŒ r/thinkpad
5
6
September 16, 2019
๐ŸŒ
Baeldung
baeldung.com โ€บ home โ€บ administration โ€บ controlling fan speed in linux
Controlling Fan Speed in Linux | Baeldung on Linux
2 weeks ago - In this tutorial, weโ€™ll discuss ... temperature, fan speed, and voltage sensors. fancontrol is an lm-sensors utility that regulates fan speed according to system temperature....
Top answer
1 of 8
224

Note before starting:

This functionality depends on both your hardware and software. If your hardware doesn't support fan speed controls, or doesn't show them to the OS, it is very likely that you could not use this solution. If it does, but the software (aka kernel) doesn't know how to control it, you are without luck.


  1. Install the lm-sensors and fancontrol packages.

  2. Configure lm-sensors as follows:

    1. In terminal type sudo sensors-detect and answer YES to all YES/no questions.
      (Potentially, this can damage your system or cause system crash. For a lot of systems, it is safe. There is no guarantee that this process will not damage your system permanently, I just think that chance of such critical failure is really really low. Saving all your work for eventual crashes/freezes/restarts before handling system configuration is always good idea. If you feel unsure, read the comments and try to search a web and get some high-level overview before YES-ing everything, maybe being selective with your YES-es will still be enough)

    2. At the end of sensors-detect, a list of modules that need to be loaded will be displayed. Type "yes" to have sensors-detect insert those modules into /etc/modules, or edit /etc/modules yourself.

    3. Run sudo service kmod start This will read the changes you made to /etc/modules in step 2, and insert the new modules into the kernel.
      Note: If you're running Ubuntu 12.04 or lower, this 3rd step command should be replaced by sudo service module-init-tools restart

  3. Configure fancontrol

    1. In terminal type sudo pwmconfig . This script will stop each fan for 5 seconds to find out which fans can be controlled by which PWM handle. After script loops through all fans, you can configure which fan corresponds to which temperature.
    2. You will have to specify what sensors to use. This is a bit tricky. If you have just one fan, make sure to use a temperature sensor for your core to base the fancontrol speed on.
    3. Run through the prompts and save the changes to the default location.
    4. Make adjustments to fine-tune /etc/fancontrol and use sudo service fancontrol restart to apply your changes. (In my case I set interval to 2 seconds.)
  4. Set up fancontrol service

    1. Run sudo service fancontrol start. This will also make the fancontrol service run automatically at system startup.

In my case /etc/fancontrol for CPU I used:

Settings for hwmon0/device/pwm2:
(Depends on hwmon0/device/temp2_input) (Controls hwmon0/device/fan2_input)

INTERVAL=2
MINTEMP=40  
MAXTEMP=60  
MINSTART=150  
MINSTOP=0  
MINPWM=0  
MAXPWM=255 

and on a different system it is:

INTERVAL=10
DEVPATH=hwmon1=devices/platform/coretemp.0 hwmon2=devices/platform/nct6775.2608
DEVNAME=hwmon1=coretemp hwmon2=nct6779
FCTEMPS=hwmon2/pwm2=hwmon1/temp2_input
FCFANS=hwmon2/pwm2=hwmon2/fan2_input
MINTEMP=hwmon2/pwm2=49
MAXTEMP=hwmon2/pwm2=83
MINSTART=hwmon2/pwm2=150
MINSTOP=hwmon2/pwm2=15
MINPWM=hwmon2/pwm2=14
MAXPWM=hwmon2/pwm2=255

This man page gives some useful info on the settings and what they really do.

2 of 8
63

If you own a ThinkPad, there's a piece of software called thinkfan that does exactly this. As the name obviously suggests, it is specifically made for ThinkPads (thinkpad_acpi).

The thinkfan software is available in the standard ubuntu software repositories, but it does require a few steps to configure.

Here is an easy step-by-step guide, which is basically a translated version of this German guide.

Relevant Information from Post

  1. Install the thinkfan software and the sensors:

    sudo apt-get install thinkfan lm-sensors
    
  2. Make sure that the daemon controls the fan by editing the thinkpad.conf file:

    sudo nano /etc/modprobe.d/thinkfan.conf
    

    by adding the following line:

    options thinkpad_acpi fan_control=1
    
  3. Make the daemon load automatically at start-up by editing the file:

    sudo nano /etc/default/thinkfan
    

    making sure that the START key is set to yes, i.e., there should be a line that says:

    START=yes
    
  4. Detect your laptop's sensors:

    sudo sensors-detect
    

    and just choose the default answers whenever you're prompted by hitting Enter.

  5. Load the new modules. From Ubuntu 13.10 this done by:

    sudo service kmod start
    

    while for previous versions like 13.04 you instead will need to do:

    sudo service module-init-tools start
    
  6. Figure out which sensors are in use:

    sensors
    

    (the ones that indicate 0 degrees are not in use, I don't know why those are "detected" too). Remember which ones are in use.

  7. Find out the full paths of these sensors:

    find /sys/devices -type f -name "temp*_input"
    

    The output should be a list of paths like /sys/devices/...

  8. Copy-paste the paths to the sensors into the configuration file /etc/thinkpad.conf. To do this, first open up the file:

    sudo nano /etc/thinkfan.conf
    

    There should already be a line like

    #sensor /proc/acpi/ibm/thermal (0, 10, 15, 2, 10, 5, 0, 3, 0, 3) 
    

    (the #-symbol means that that line is commented out). Add a line starting with sensor (without the #-symbol) and copy-paste you first sensor. Repeat this if you have more than one sensor. For example, on my machine, the output in step 7 yields

    /sys/devices/virtual/hwmon/hwmon0/temp1_input
    /sys/devices/platform/thinkpad_hwmon/temp3_input
    /sys/devices/platform/thinkpad_hwmon/temp4_input
    /sys/devices/platform/thinkpad_hwmon/temp5_input
    /sys/devices/platform/thinkpad_hwmon/temp6_input
    /sys/devices/platform/thinkpad_hwmon/temp7_input
    /sys/devices/platform/thinkpad_hwmon/temp1_input
    /sys/devices/platform/thinkpad_hwmon/temp8_input
    /sys/devices/platform/thinkpad_hwmon/temp2_input
    /sys/devices/platform/coretemp.0/temp4_input
    /sys/devices/platform/coretemp.0/temp2_input 
    

    The ones that are in use in my machine are the ones in the first and the last two lines, so I added the three lines:

    sensor /sys/devices/virtual/hwmon/hwmon0/temp1_input
    sensor /sys/devices/platform/coretemp.0/temp4_input
    sensor /sys/devices/platform/coretemp.0/temp2_input 
    
  9. Finally, we can set the fan speed levels in the configuration file. Open the /etc/thinkpad.conf file if it wasn't open already.

    sudo nano /etc/thinkfan.conf
    

    The fan levels I use on my ThinkPad x201 are:

    (0, 0, 51)
    (1, 50, 52)
    (2, 51, 55)
    (3, 54, 58)
    (4, 56, 63)
    (5, 60, 70)
    (6, 66, 79)
    (7, 74, 92)
    (127, 85, 32767) 
    

    The last line ensures full fan speed (127 = "disengaged" i.e. unregulated). You can fiddle with these levels to fit your needs/wishes, but PLEASE BE CAREFUL!

  10. Reboot. Everything should work now. In order to check whether thinkpad is running correctly, use:

    sudo thinkfan -n
    

    Which starts thinkfan in verbose mode. You might want to stop the thinkfan daemon first:

    sudo /etc/init.d/thinkfan stop
    

    If you want to start the thinkfan daemon again, type:

    sudo /etc/init.d/thinkfan start
    

Just to be complete, my /etc/thinkfan.conf configuration file is:

# IMPORTANT:
#
# To keep your HD from overheating, you have to specify a correction value for
# the sensor that has the HD's temperature. You need to do this because
# thinkfan uses only the highest temperature it can find in the system, and
# that'll most likely never be your HD, as most HDs are already out of spec
# when they reach 55 ยฐC.
# Correction values are applied from left to right in the same order as the
# temperatures are read from the file.
#
# For example:
# sensor /proc/acpi/ibm/thermal (0, 0, 10)
# will add a fixed value of 10 ยฐC the 3rd value read from that file. Check out
# http://www.thinkwiki.org/wiki/Thermal_Sensors to find out how much you may
# want to add to certain temperatures.

# Syntax:
# (LEVEL, LOW, HIGH)
# LEVEL is the fan level to use (0-7 with thinkpad_acpi)
# LOW is the temperature at which to step down to the previous level
# HIGH is the temperature at which to step up to the next level
# All numbers are integers.
#

# I use this on my T61p:
#sensor /proc/acpi/ibm/thermal (0, 10, 15, 2, 10, 5, 0, 3, 0, 3)

#(0, 0, 55)
#(1, 48, 60)
#(2, 50, 61)
#(3, 52, 63)
#(4, 56, 65)
#(5, 59, 66)
#(7, 63, 32767)


# My settings for my ThinkPad X201: (kris)

sensor /sys/devices/virtual/hwmon/hwmon0/temp1_input
sensor /sys/devices/platform/coretemp.0/temp4_input
sensor /sys/devices/platform/coretemp.0/temp2_input

(0, 0, 51)
(1, 50, 52)
(2, 51, 55)
(3, 54, 58)
(4, 56, 63)
(5, 60, 70)
(6, 66, 79)
(7, 74, 92)
(127, 85, 32767)
๐ŸŒ
GitHub
github.com โ€บ Maldela โ€บ fancontrol-gui
GitHub - Maldela/fancontrol-gui: GUI for Fancontrol. It uses the KAuth module of the KDE Frameworks 5 to write the generated config file. Furthermore it communicates with systemd via dbus to control the fancontrol service. If you want to compile without systemd support set the -DNO_SYSTEMD option. ยท GitHub
GUI for Fancontrol. It uses the KAuth module of the KDE Frameworks 5 to write the generated config file. Furthermore it communicates with systemd via dbus to control the fancontrol service.
Starred by 381 users
Forked by 37 users
Languages ย  C++ 69.4% | QML 24.8% | CMake 3.3% | Nix 1.1%
๐ŸŒ
Linux Questions
linuxquestions.org โ€บ questions โ€บ linux-software-2 โ€บ looking-for-an-easy-to-use-fan-control-app-for-debian-12-a-4175733334
Looking for an easy to use fan control app for Debian 12
January 29, 2024 - Using Debian 12 and I'd like to know if there's an app out there (prefer a GUI ) that lets me see and EASILY control -all- fans attached to my system.
Find elsewhere
๐ŸŒ
Debian
packages.debian.org โ€บ trixie โ€บ utils โ€บ fancontrol
Debian -- Details of package fancontrol in trixie
This package contains a daemon that calculates fan speeds from temperatures and sets the corresponding PWM outputs to the computed values.
๐ŸŒ
Deye PV Balkonkraftwerk
libe.net โ€บ en โ€บ fan-control-debian
Fan control Linux Debian: Fancontrol
September 26, 2022 - Found the following fan sensors: hwmon2/fan1_input current speed: 0 ... skipping! hwmon2/fan2_input current speed: 2054 RPM hwmon2/fan3_input current speed: 0 ... skipping! hwmon2/fan4_input current speed: 0 ... skipping! hwmon2/fan5_input current speed: 0 ... skipping! hwmon2/fan6_input current speed: 0 ... skipping! Warning!!! This program will stop your fans, one at a time, for approximately 5 seconds each!!! This may cause your processor temperature to rise!!! If you do not want to do this hit control-C now!!!
๐ŸŒ
TutorialsPoint
tutorialspoint.com โ€บ unix_commands โ€บ fancontrol.htm
fancontrol Command in Linux
The lm-sensors utility is used ... command mentioned below โˆ’ ยท sudo apt install lm-sensors #Ubuntu or Debian sudo dnf install lm_sensors #RHEL ......
๐ŸŒ
Debian
packages.debian.org โ€บ bookworm โ€บ fancontrol
Debian -- Details of package fancontrol in bookworm
This package contains a daemon that calculates fan speeds from temperatures and sets the corresponding PWM outputs to the computed values.
๐ŸŒ
Debian
packages.debian.org โ€บ stable โ€บ utils โ€บ fancontrol
I Challenge Thee
I Challenge Thee ยท AI scrapers break the web, to use this page you'll need JavaScript enabled
๐ŸŒ
nixCraft
cyberciti.biz โ€บ nixcraft โ€บ howto โ€บ centos โ€บ how to find fan speed in linux for cpu and gpu
How to find fan speed in Linux for CPU and GPU - nixCraft
September 12, 2024 - Configure sensors by running sudo sensors-detect command. ... Finally, run sensors command in Linux to see CPU and GPU temperature, including fan speed. Let us see all commands and examples in details.
๐ŸŒ
Debian Manpages
manpages.debian.org โ€บ stretch โ€บ fancontrol โ€บ fancontrol(8)
fancontrol(8) โ€” fancontrol โ€” Debian stretch โ€” Debian Manpages
It reads its configuration from a file, then calculates fan speeds from temperatures and sets the corresponding PWM outputs to the computed values.
๐ŸŒ
Greenwebpage
greenwebpage.com โ€บ home โ€บ blog โ€บ how to control cpu fan speed on linux: in 5 steps
How to Control CPU Fan Speed on Linux: In 5 Steps - Greenwebpage Community
February 26, 2025 - First, install lm-sensors using the package manager of your distribution. For Debian-based systems, use sudo apt install lm-sensors, and for RHEL-based systems, sudo dnf install lm_sensors.
๐ŸŒ
Debian Manpages
manpages.debian.org โ€บ wheezy โ€บ fancontrol โ€บ fancontrol(8)
fancontrol(8) โ€” fancontrol โ€” Debian wheezy โ€” Debian Manpages
It reads its configuration from a file, then calculates fan speeds from temperatures and sets the corresponding PWM outputs to the computed values.
๐ŸŒ
GitHub
github.com โ€บ desbma โ€บ hddfancontrol
GitHub - desbma/hddfancontrol: Regulate fan speed according to hard drive temperature ยท GitHub
On recent Ubuntu and other Debian derivatives: sudo apt install hdparm sdparm smartmontools. See systemd service to easily manage the daemon. sudo cargo install --root /usr/local hddfancontrol ยท The default parameters will run fans at 100% speed at temperatures > 50ยฐC, and run them a 20% speed if < 30ยฐC, which corresponds to the usual recommended drive operating temperature.
Starred by 206 users
Forked by 24 users
Languages ย  Rust 97.5% | Python 2.2% | Shell 0.3%
๐ŸŒ
Debian Manpages
manpages.debian.org โ€บ fancontrol
fancontrol(8) โ€” fancontrol โ€” Debian trixie โ€” Debian Manpages
It reads its configuration from a file, then calculates fan speeds from temperatures and sets the corresponding PWM outputs to the computed values.