The fastest way to setup scheduled tasks in Linux is with cron. To list your cron tasks, run:
sudo crontab -l
To modify your cron tasks, run:
sudo crontab -e
For help generating the string for when your tasks should run, just google around for “cron calculator”, and remember to test, test, test.