How can to add cron on QNAP NAS
How to start timed tasks on QNAP NAS
First, you need to open the ssh login of the NAS,,,
https://s3.cdnha.com/vpslalaimg/2020/07/chrome_xzkXNLLREf.jpg
https://s3.cdnha.com/vpslalaimg/2020/07/chrome_Z1P8n1CWd9.jpg
Use ssh to QNAP NAS terminal, you can execute the command to start adding QNAP NAS timing tasks
vi /etc/config/crontab
0 3 * * * /usr/local/demo/scripts/autoreload.sh
//Autoreload.sh script is automatically executed every day at 3 o'clock in the morning
Note that to add a custom script or program, you must remember to grant permission to execute the script program
chmod +x demo.sh
Lazy writing, suitable for people who do not know VI editor
echo "1 4 * * * /usr/local/demo/scripts/autoreload.sh" >> /etc/config/crontab
Restart QNAP NAS task process
crontab /etc/config/crontab && /etc/init.d/crond.sh restart