Asus H87-PRO /usr/sbin/pwmconfig: There are no pwm-capable sensor modules installed

Solution 1:

Can you post the output of sudo sensors-detect?

Edit: Nevermind. I read the pastbin you linked (totally missed it). It looks like sensors-detect does not fully recognize your Super I/O chip. According to this the Super I/O is the Nuvoton (formerly Winbond) NCT 5538D. The chip ID appears to be the same as the NCT6775 family. You can download the driver from here, which is a link to github of the maintainer of that kernel module (it is a download link).

Then do the following:

cd /path/to/directory/you/saved/the/file
tar xzvf master.tar.gz
sudo make
sudo make install
modprobe hwmon
modprobe nct6775

Then, check to make sure you did everything correctly:

lsmod | grep nct

The output should look something like [this][3]:

user@computer:/# lsmod | grep nct
nct6775                44104  0 
hwmon_vid              12388  1 nct6775

Then run sudo pwmconfig and hopefully everything should be ok.