cheatsheet:qnap

Cron

You must be able to connect to you QNAP NAS using SSH and know how to edit a file using a text editor such as vi before starting it. The crontab can be used to execute tasks based on a recurring schedule. To view the contents of your crontab, please logon to your NAS via SSH and type crontab -l.

[~] # crontab -l

You will see a list of crontab entries. Now, we can start to modify crontab entries.

DO NOT edit crontab the usual way, like this.

[~] # crontab -e

Because of the way of the firmware update, the crontab will be overwritten during next system reboot. Obviously, you would like to your schedule job to survive after the reboot. So please follow steps below. 1. Edit the crontab file, “/etc/config/crontab” directly with the text editor and add a task into it with correct format. e.g.:

[~] # vi /etc/config/crontab

2. Save the changes and exit the editor. 3. Run the command below to reload the crontab file and restart the cron daemon.

[~] # crontab /etc/config/crontab && /etc/init.d/crond.sh restart

Note: Don't forget to change the file mode of your script to be executable.

Now, you should be able to see your script file running periodically and even after the system reboots.

  • cheatsheet/qnap.txt
  • Last modified: 2024/10/26 14:04
  • by daisukixci