I hope I am asking this question correctly. I am trying to run all jobs that are setup on my server, by nano /etc/crontab I see the list of:

# m h dom mon dow user  command
27 *    * * *   root    cd / && run-parts --report /etc/cron.hourly
58 15    * * *   root    test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.daily )
0 15    * * 7   root    test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.weekly )
20 15    1 * *   root    test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.monthly )
#

Is it possible to execute crontab to kick off all these jobs, or force them to run?

I am trying to confirm they are actually running.

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

If you want to check if they are executed, use grep cron /var/log/syslog.

link|improve this answer
thank you @Can, that's exactly what I was looking for – chris hough Oct 1 '11 at 19:36
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.