Hi, I've HP Laptop EliteBook 8440p and I am new to linux. I want to control my laptop's Fan speed, I was able to do so very easily in windows 7 by using the HWinfo software but in linux it is difficult. I tried installing lm-sensors, xsensors and fancontrol packages.
The "sudo sensors-detect" command only detect "coretemp" and add it to the /etc/modules. After running "sudo service kmod start'' it says "there are no pwm-capable sensor modules installed".
I tried a FIX by mdhalien which did not help me at all:
I am stuck here, please help me control fan speed. There is no option to control it in BIOS.
The "sudo sensors-detect" command only detect "coretemp" and add it to the /etc/modules. After running "sudo service kmod start'' it says "there are no pwm-capable sensor modules installed".
I tried a FIX by mdhalien which did not help me at all:
This can be fixed by relaxing an acpi check in the kernel (hmm), see https://hydra.geht.net/tino/howto/linux/fixes/w83627hf/ amongst others for more details. The way I fixed this is to edit /etc/default/grub to add acpi_enforce_resources=lax to the GRUB_CMDLINE_LINUX_DEFAULT giving:
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash acpi_enforce_resources=lax"
Then need to update the boot configuration:
sudo update-grub
and reboot.
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash acpi_enforce_resources=lax"
Then need to update the boot configuration:
sudo update-grub
and reboot.
Comment