Eu tive um problema muito semelhante com um A8-7600 & ASUS A88XM-PLUS mobo no UBUNTU 14.04.2.
Você está certo, o kernel 3.16 é uma obrigação. Mas você também tem que carregar também o módulo de kernel do chip Super I / O do mobo. No meu caso, é o módulo Nuvoton nct6775. (Obteve as informações do programa CPU-Z, guia mainboard, campo LPCIO.) Então, no meu caso:
>sudo modprobe nct6775
>lsmod | grep nct
nct6775 55272 0
hwmon_vid 12783 1 nct6775
Você também pode carregar o módulo @ boot, se você adicioná-lo ao arquivo / etc / modules.
>cat /etc/modules
# /etc/modules: kernel modules to load at boot time.
#
# This file contains the names of kernel modules that should be loaded
# at boot time, one per line. Lines beginning with "#" are ignored.
# Parameters can be specified after the module name.
lp
rtc
nct6775
E voila:
>sensors
k10temp-pci-00c3
Adapter: PCI adapter
temp1: +1.9°C (high = +70.0°C)
(crit = +70.0°C, hyst = +69.0°C)
nct6791-isa-0290
Adapter: ISA adapter
in0: +0.84 V (min = +0.00 V, max = +1.74 V)
in1: +1.01 V (min = +0.00 V, max = +0.00 V) ALARM
in2: +3.44 V (min = +0.00 V, max = +0.00 V) ALARM
in3: +3.44 V (min = +0.00 V, max = +0.00 V) ALARM
in4: +1.00 V (min = +0.00 V, max = +0.00 V) ALARM
in5: +2.04 V (min = +0.00 V, max = +0.00 V) ALARM
in6: +0.28 V (min = +0.00 V, max = +0.00 V) ALARM
in7: +3.42 V (min = +0.00 V, max = +0.00 V) ALARM
in8: +3.30 V (min = +0.00 V, max = +0.00 V) ALARM
in9: +0.00 V (min = +0.00 V, max = +0.00 V)
in10: +0.17 V (min = +0.00 V, max = +0.00 V) ALARM
in11: +0.17 V (min = +0.00 V, max = +0.00 V) ALARM
in12: +1.00 V (min = +0.00 V, max = +0.00 V) ALARM
in13: +1.01 V (min = +0.00 V, max = +0.00 V) ALARM
in14: +0.22 V (min = +0.00 V, max = +0.00 V) ALARM
fan1: 1261 RPM (min = 0 RPM)
fan2: 1223 RPM (min = 0 RPM)
fan3: 0 RPM (min = 0 RPM)
SYSTIN: +35.0°C (high = +0.0°C, hyst = +0.0°C) ALARM sensor = thermistor
CPUTIN: +32.0°C (high = +80.0°C, hyst = +75.0°C) sensor = thermistor
AUXTIN0: +104.0°C sensor = thermistor
AUXTIN1: +103.0°C sensor = thermistor
AUXTIN2: +103.0°C sensor = thermistor
AUXTIN3: +104.0°C sensor = thermistor
PCH_CHIP_CPU_MAX_TEMP: +0.0°C
PCH_CHIP_TEMP: +0.0°C
PCH_CPU_TEMP: +0.0°C
PCH_MCH_TEMP: +0.0°C
intrusion0: ALARM
intrusion1: ALARM
beep_enable: disabled
Funciona como charme desde então.
Atenciosamente, 2D