Quiero monitorear los ventiladores de mi HTPC debido a un reciente e inexplicable aumento de temperatura de más de 5 grados C. El paquete 'lm-sensors' no detecta los sensores del ventilador. Después de investigar un poco, descubrí que hay controladores disponibles para el chip Nuvoton en mi mobo Z87 PRO:
https://github.com/groeck/nct6775
Al hacer/compilar me sale el siguiente error:
~/Z87 Drivers/nct6775-master$ sudo make
**arch/x86/Makefile:136: CONFIG_X86_X32 enabled but no binutils support
Makefile:652: Cannot use CONFIG_CC_STACKPROTECTOR_REGULAR: -fstack- protector not supported by compiler
make[1]: *** No rule to make target 'Drivers/nct6775-master'. Stop.
Makefile:30: recipe for target 'modules' failed
make: *** [modules] Error 2**
~/Z87 Drivers/nct6775-master$
Algunas ideas ?
Muchas gracias.
Respuesta1
Sugiero la siguiente secuencia:
sudo apt-get install build-essential linux-headers-generic
cd ~/Z87\ Drivers/nct6775-master
make clean
make
sudo make install