My old Synology DS1511+ has a failed fan. It gave warnings in the form of beeps and in the logs, which it is supposed to do.
To be honest, I found someone who already had done what I wanted, so I just modified it slightly to work for DS1511+.
What we are going to do:
- Enable SSH and connect to our Synology box.
- Locate any files named “fan†something.
- Use the Editor VI to create a Shell Script to disable the “check_fan†function after each reboot.
Info: basic VI commands and Vi commands on Synology wiki. We are only going to use the [ESC] key, and the command “:wq!†to exit and save from vi.
Steps to make this Work:
- First turn on SSH in Control Panel |Terminal
- Connect to your Synology box using a program like Putty where username is “root†and password is the same you use for “admin“.
- Locate the file we need to modify in order to disable the fan check.
Note: if you cant find the file, navigate to sys dir first using cd /sys/find -name "*fan*" Results in: ./module/pineview_synobios/parameters/check_fan
- Create a Shell script by navigating to the location containing the scripts. Creating a new script file and modify the permissions for the file (do this with sudo):
cd /usr/syno/etc.defaults/rc.sysv/ vi S99zz_fan_check_disable.sh echo 0 > /sys/module/pineview_synobios/parameters/check_fan [ESC] :x [Enter] chmod +x S99zz_fan_check_disable.sh
- That’s it. Reboot your NAS and now you don’t have to modify the file after each reboot.