NETGEAR is aware of a growing number of phone and online scams. To learn how to stay safe click here.
Forum Discussion
glem
May 22, 2013Aspirant
Easy fix fan/temp OS6 issues on x86 legacy #no support
>> EDIT - 2014-04-12 << Before to hack your system, update first to 6.1.7. Built-in fancontrol support is there! 6.1.7 has been released: http://www.readynas.com/forum/viewtopic.php?f=1&t=76000 ...
Iridabike
Jun 22, 2013Aspirant
If anyone wants their temperatures logged in Frontview in OS6 its just a standard round robin database that is meant to updated by readystatsd. For some reason my Pro 6 wont log anything. I guess there something wrong in readystatsd. It is running fine but fails to update the temperature databases. It's a compiled elf and I am not able to fix it so I made a simple script called every minute from crontab to sort it out. This is my first go at scripting so its a bit basic! My guess is that it will need to be modded for anything other than a Pro 6. Anyone with a bit more knowledge fancy sorting it properly? Ideally it would be best to decompile the elf and fix it at source.
#!/bin/sh
#######################################################
Coretemp="/sys/devices/platform/coretemp.0/temp2_input"
Systemp="/sys/devices/platform/w83627ehf.2576/temp2_input"
Coretemp2="/sys/devices/platform/coretemp.0/temp3_input"
Ct=`cat $Coretemp`
C=`expr $Ct / 1000`
Ct2=`cat $Coretemp2`
C2=`expr $Ct2 / 1000`
St=`cat $Systemp`
S=`expr $St / 1000`
rrdtool update /run/readynasd/stats/temperature_cputemp_deg.rrd N:$C
rrdtool update /run/readynasd/stats/temperature_systemp_deg.rrd N:$S
rrdtool update /run/readynasd/stats/temperature_system_deg.rrd N:$S

#!/bin/sh
#######################################################
Coretemp="/sys/devices/platform/coretemp.0/temp2_input"
Systemp="/sys/devices/platform/w83627ehf.2576/temp2_input"
Coretemp2="/sys/devices/platform/coretemp.0/temp3_input"
Ct=`cat $Coretemp`
C=`expr $Ct / 1000`
Ct2=`cat $Coretemp2`
C2=`expr $Ct2 / 1000`
St=`cat $Systemp`
S=`expr $St / 1000`
rrdtool update /run/readynasd/stats/temperature_cputemp_deg.rrd N:$C
rrdtool update /run/readynasd/stats/temperature_systemp_deg.rrd N:$S
rrdtool update /run/readynasd/stats/temperature_system_deg.rrd N:$S

Related Content
NETGEAR Academy

Boost your skills with the Netgear Academy - Get trained, certified and stay ahead with the latest Netgear technology!
Join Us!