• Willkommen im Linux Club - dem deutschsprachigen Supportforum für GNU/Linux. Registriere dich kostenlos, um alle Inhalte zu sehen und Fragen zu stellen.

[Gelöst] sensors Problem

Hi Forum

Da ich gerne auf meinem System Die CPU Temp anschauen will, habe ich sensors Installiert, das hat auch spuper geklappt.Nur wenn ich nun sensors ausführe per root auf der Konsole
kommt:
sensors
No sensors found!
Make sure you loaded all the kernel drivers you need.
Try sensors-detect to find out which these are.

ICh habe davor das Sensors-detect ausgeführt und er hat auch was gefunden:
To make the sensors modules behave correctly, add these lines to
/etc/modprobe.conf:

#----cut here----
# I2C module options
alias char-major-89 i2c-dev
#----cut here----

To load everything that is needed, add this to some /etc/rc* file:

#----cut here----
# I2C adapter drivers
modprobe i2c-i801
# Chip drivers
modprobe lm85
modprobe eeprom
modprobe w83627hf
# sleep 2 # optional
/usr/bin/sensors -s # recommended
#----cut here----

If you have some drivers built into your kernel, the list above will
contain too many modules. Skip the appropriate ones! You really
should try these commands right now to make sure everything is
working properly. Monitoring programs won't work until the needed
modules are loaded.
....
Das habe ich auch soweit gemacht was da drin steht aber Funktionieren tuht das immer noch nicht.

Für Hilfe währe ich Dankbar.

MFG flippa
 
Welche Linux Dist.? Woher hast du Sensors?

Beim Paket lm_sensors für openSUSE werden beim sensors-detect Lauf am Ende die ermittelen Werte in die dort korrekte Datei /etc/sysconfig/lm_sensors gesichert.
 
System ist Opensuse 10.2 und ich habe es ganz normal über Yast Isntalliert
(http://ftp.gwdg.de/pub/opensuse/distribution/10.2/repo/oss)

Das steht in der conf:

# Generated by sensors-detect on Wed Jan 30 10:27:23 2008
MODULE_0=i2c-i801
MODULE_1=lm85
MODULE_2=eeprom
MODULE_3=w83627hf

MFG flippa
 
bingo

Die Module wahren nicht geladen :) macht das Lm_sensors nicht Automatisch wenn man sensors detect ausführt?.

Vielen dank Abyys, panamajo

MFG Flippa
 
hm

hab das ganze bei einem anderen rechner nochmals gemacht dann bekomme ich ein Fehler:
modprobe lm93
FATAL: Module lm93 not found.
obwohl er in ja gefunden hat.

Probing for `National Semiconductor LM93'... Success!
(confidence 5, driver `lm93')

die anderen 2 konnte ich laden:
modprobe eeprom
modprobe i2c-i801

lsmod|grep eeprom
eeprom 24976 0
i2c_core 41472 3 i2c_dev,eeprom,i2c_i801

hm komisch
 
flip007 schrieb:
Die Module wahren nicht geladen :) macht das Lm_sensors nicht Automatisch wenn man sensors detect ausführt?.
Nein. sensors-detect versucht ja herauszufinden welche Sensoren in der HW verbaut wurden. Da sich manche Sensoren nicht unterscheiden lassen und damit ohne manuelle Überprüfung keine 100% sichere Liste ermittelt werden kann wäre das automatische Laden von Modulen Blödsinn.

Aber die Module werden automatisch geladen sobald sensor neu startet:
Code:
/etc/init.d/lm_sensors restart
 
Oben