admin avatar

How can to add cron on QNAP NAS

🕝 by admin

How to start timed tasks on QNAP NAS

First, you need to open the ssh login of the NAS,,,

Use ssh to QNAP NAS terminal, you can execute the command to start adding QNAP NAS timing tasks

1
2
3
4
5
6
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

💘 相关文章

写一条评论