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 ...
xmansss
Jul 02, 2013Aspirant
Hi,
In my Pro 6 the temperature bars are decreasing as well. My box reads values from the file /run/readynasd/stats/temperature_int_deg.rrd abou 10 sec after the minute and then writes the new values to the file at about 56 sec. after the minute. It looks for me that the value read 10 sec after the minute references the minute before. So my quick fix is to make a copy of temperature_int_deg.rrd file modify the script provided by Iridabike so that it updates the copy and overwrites the file temperature_int_deg.rrd with the copy before 10 sec after the minute. So my script looks like:
#!/bin/sh
#######################################################
sleep 30
Coretemp="/sys/devices/platform/w83627ehf.2576/temp1_input"
Systemp="/sys/devices/platform/w83627ehf.2576/temp2_input"
Ct=`/bin/cat $Coretemp`
C=`/usr/bin/expr $Ct / 1000`
St=`/bin/cat $Systemp`
S=`/usr/bin/expr $St / 1000`
/usr/bin/rrdtool update /run/readynasd/stats/temperature_int_deg.rrd.custom N:$C:$S
sleep 30
cp -f /run/readynasd/stats/temperature_int_deg.rrd.custom /run/readynasd/stats/temperature_int_deg.rrd
It works for me just fine. I hope that helps.
P.S.
I'm still looking for a solution on updating the values under those nice temperature and fan animations :D .
In my Pro 6 the temperature bars are decreasing as well. My box reads values from the file /run/readynasd/stats/temperature_int_deg.rrd abou 10 sec after the minute and then writes the new values to the file at about 56 sec. after the minute. It looks for me that the value read 10 sec after the minute references the minute before. So my quick fix is to make a copy of temperature_int_deg.rrd file modify the script provided by Iridabike so that it updates the copy and overwrites the file temperature_int_deg.rrd with the copy before 10 sec after the minute. So my script looks like:
#!/bin/sh
#######################################################
sleep 30
Coretemp="/sys/devices/platform/w83627ehf.2576/temp1_input"
Systemp="/sys/devices/platform/w83627ehf.2576/temp2_input"
Ct=`/bin/cat $Coretemp`
C=`/usr/bin/expr $Ct / 1000`
St=`/bin/cat $Systemp`
S=`/usr/bin/expr $St / 1000`
/usr/bin/rrdtool update /run/readynasd/stats/temperature_int_deg.rrd.custom N:$C:$S
sleep 30
cp -f /run/readynasd/stats/temperature_int_deg.rrd.custom /run/readynasd/stats/temperature_int_deg.rrd
It works for me just fine. I hope that helps.
P.S.
I'm still looking for a solution on updating the values under those nice temperature and fan animations :D .
Related Content
NETGEAR Academy
Boost your skills with the Netgear Academy - Get trained, certified and stay ahead with the latest Netgear technology!
Join Us!