Causing Anacron jobs to run immediatelyEdit
Can do this for testing purposes:
# anacron -fn # kick off the jobs
# tail -f /var/log/cron # monitor the logs
ie.
-fto force execution, ignoring timestamps.-nto ignore delay specifications (not sure if this is actually needed, but as you can see I used it anyway).-s(implied by-n) to run jobs serially instead of in parallel.