Skip to content

Instantly share code, notes, and snippets.

@mateusreis
Created August 18, 2025 01:42
Show Gist options
  • Select an option

  • Save mateusreis/2bfeb074d7e1db760775301eabb50f28 to your computer and use it in GitHub Desktop.

Select an option

Save mateusreis/2bfeb074d7e1db760775301eabb50f28 to your computer and use it in GitHub Desktop.
Como configurar os fans no Debian 13 - 2025
// fan speed
For amd you can use corectrl and for nvidia coolercontrol
$ sudo apt update
$ sudo apt install lm-sensors
Run sensors-detect to identify hardware sensors:
$ sudo sensors-detect
At the end of sensors-detect, it will suggest adding certain kernel modules to /etc/modules for automatic loading on boot. Confirm this action or manually add the suggested lines to the file. You may also need to run
$ sudo service kmod start (or equivalent for your system) to load the modules immediately without rebooting. Verify sensor readings.
Once installed and configured, you the can view sensor data usingsensors
:command
Now follows a summary of the probes I have just done.
Just press ENTER to continue:
Driver `coretemp':
* Chip `Intel digital thermal sensor' (confidence: 9)
Driver `nct6775':
* ISA bus, address 0x290
Chip `Nuvoton NCT6791D Super IO Sensors' (confidence: 9)
To load everything that is needed, add this to /etc/modules:
#----cut here----
# Chip drivers
coretemp
nct6775
#----cut here----
$ sensors
mateus@tokyo:~$ sensors
acpitz-acpi-0
Adapter: ACPI interface
temp1: +27.8°C
temp2: +29.8°C
coretemp-isa-0000
Adapter: ISA adapter
Package id 0: +43.0°C (high = +80.0°C, crit = +100.0°C)
Core 0: +40.0°C (high = +80.0°C, crit = +100.0°C)
Core 1: +41.0°C (high = +80.0°C, crit = +100.0°C)
Core 2: +38.0°C (high = +80.0°C, crit = +100.0°C)
Core 3: +40.0°C (high = +80.0°C, crit = +100.0°C)
nouveau-pci-0100
Adapter: PCI adapter
GPU core: 895.00 mV (min = +0.60 V, max = +1.27 V)
fan1: 2054 RPM
temp1: +39.0°C (high = +95.0°C, hyst = +3.0°C)
(crit = +105.0°C, hyst = +5.0°C)
(emerg = +135.0°C, hyst = +5.0°C)
power1: 34.42 W (crit = 280.00 mW)
pwm1: 50%
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment