crontab is indeed a scheduler to run jobs at certain times. Sure, check the linux forum. Also searching on
should find quick easy guides such as:
I find that the .edu college sites offer the best advice.
Basically, you can enter
->crontab -l to list your jobs
->crontab -r to remove them
->crontab -e to edit them
while your testing the best way I found was to create a file with pico called say cronjobs then issue a
->crontab cronjobs
cronjobs will look something like:
0 0 * * 0 /home/users/bofh/zaplogfiles
which runs a zaplogfiles batch on midnight every sunday.
Other considerations:
you have to leave a blank line after your last crontab entry else it wont work (dont know if true)
crontab will only start the job when it reaches the time - it won't backdate jobs if you submit them a few minutes after the scheduled time.
I dont know wether the jobs are triggered with reference to your hardware clock or you software clock - if things arent running on time then see if you can find a clocksync utility.