No worries Peter.
You'll need command line access to the router so that you can initiate the download and install onto the router.
I recommend using PuTTY.exe for Windows or Terminal.app for Mac/Linux
Login as root using your password.
Code: Select all
wget -O /tmp/install.sh http://lantisproject.com/gargoyle_mvebu/fan_daemon/install_fan_daemon.sh
This downloads the install script and calls it "install.sh" in the /tmp folder.
Then
Executes the script to install the fan daemon. You can check it is working by typing
logread
And looking for an entry that says "FAN_MONITOR setting fan to 50%" or similar.
For reference, here is the temperature table in use. Figures are in degrees Celcius x1000
The fan will turn on if any of these temperatures is exceeded
CPU_ON=65000 # Belkin default is 85
DDR_ON=65000 # Belkin default is 65
WIFI_ON=70000 # Belkin default is 105
# The fan will run at reduced speed if any of these temperatures are below these values
CPU_MID=60000 # Belkin sets no default
DDR_MID=60000 # Belkin sets no default
WIFI_MID=65000 # Belkin sets no default
# The fan will turn off if all of the temperatures are below these values
CPU_OFF=55000 # Belkin default is 80
DDR_OFF=55000 # Belkin default is 60
WIFI_OFF=60000 # Belkin default is 100