Achimd1
Hi , There
Please try this way :
Solution 1:
Fix ITE Sensor Driver (Core Fix, resolves the “no modules” error in pwmconfig)
CachyOS is Arch-based. Run the commands below to compile the third-party it87 driver, which enables the system to detect fan PWM channels.
1. Install compilation dependencies
sudo pacman -S linux-headers git base-devel lm_sensors fancontrol thermald acpi_call
2. Download & compile open-source driver for ITE sensor chip
git clone https://github.com/frankcrawford/it87.git
cd it87
make
sudo make install
3. Configure auto-load driver on system boot
echo "it87" | sudo tee /etc/modules-load.d/it87.conf
sudo modprobe it87
4. Rescan hardware sensors and set up fan speed curve
sudo sensors-detect
# Press Enter for all default prompts to load all thermal kernel modules, then reboot after completion
sudo reboot
# Configure fan speed regulation after reboot
sudo pwmconfig
sudo systemctl enable --now fancontrol
sudo systemctl enable --now thermald
```