Temperaturövervakning
Hej efter ha läst i tråden
http://ubuntuguide.org/wiki/Ubuntu:Feisty#How_to_detect_CPU_t...
så följde jag den här guiden vilket var precis som mina sensorer i panelen visade.
Jag trodde man fick fram mera temperatur sensorers med denna guide men efter jag har botat om så fungerar inte mina panel sensors något mera .som gick bra innan jag körde guiden.Nu får jag bara fram "inget stöd för temeraturövervakning" (Chip not found) Snälla hjälp mig att få tillbaka det var innan.
Det här nedan var det jag gjorde i konsolen kanske svaret finns där?
sudo apt-get install lm-sensors
Create file called mkdev.sh, and paste in the following
#!/bin/bash
# Here you can set several defaults.
# The number of devices to create (max: 256)
NUMBER=32
# The owner and group of the devices
OUSER=root
OGROUP=root
# The mode of the devices
MODE=600
# This script doesn't need to be run if devfs is used
if [ -r /proc/mounts ] ; then
if grep -q "/dev devfs" /proc/mounts ; then
echo "You do not need to run this script as your system uses devfs."
exit;
fi
fi
i=0;
while [ $i -lt $NUMBER ] ; do
echo /dev/i2c-$i
mknod -m $MODE /dev/i2c-$i c 89 $i || exit
chown "$OUSER:$OGROUP" /dev/i2c-$i || exit
i=$[$i + 1]
done
#end of file
Make this file executable, then run it
sudo chmod +x mkdev.sh
sudo ./mkdev.sh
Now detect sensors, and answer "y" to all questions.
sudo sensors-detect
To load the manual modules, type
sudo /etc/init.d/module-init-tools
Load the modules into kernel with
sudo sensors -s
And check the output
sudo sensors