I need some help with cronjobs
by peter7089 from LinuxQuestions.org on (#5HZ8Z)
I want to setup cronjobs for rclone backups that i want to run hourly, daily, weekly and monthly. Are these the correct values:
Code:every hour:
0 * * * *
every day:
0 0 * * *
every week:
0 0 * * 0
every month:
0 0 1 * *Also, if my pc is not powered on when a cronjob should be run, will this missed cronjob be run when i turn the pc on?
It would be good if there was a graphical interface for cron, it will make things easier.


Code:every hour:
0 * * * *
every day:
0 0 * * *
every week:
0 0 * * 0
every month:
0 0 1 * *Also, if my pc is not powered on when a cronjob should be run, will this missed cronjob be run when i turn the pc on?
It would be good if there was a graphical interface for cron, it will make things easier.