Đối với CentOS 6, bạn cần grep / etc / anacrontab và câu trả lời sẽ thay đổi nếu máy chủ / máy tính xách tay / dekstop / etc đã bị tắt hay chưa.
cat /etc/anacrontab
# /etc/anacrontab: configuration file for anacron
# See anacron(8) and anacrontab(5) for details.
SHELL=/bin/sh
PATH=/sbin:/bin:/usr/sbin:/usr/bin
MAILTO=root
# the maximal random delay added to the base delay of the jobs
RANDOM_DELAY=45
# the jobs will be started during the following hours only
START_HOURS_RANGE=3-22
#period in days delay in minutes job-identifier command
1 5 cron.daily nice run-parts /etc/cron.daily
7 25 cron.weekly nice run-parts /etc/cron.weekly
@monthly 45 cron.monthly nice run-parts /etc/cron.monthly
Vì vậy, trong khoảng thời gian từ 3 giờ sáng đến 10 giờ tối (sau khi khởi động lại và sau khi máy đã hoạt động được 5 phút ^^), hãy chạy /etc/cron.d Daily. Nếu không có khởi động lại, công việc sẽ chạy vào lúc 3:05 AM++.
** As defined by START_HOURS_RANGE
^^ As defined by FIELD_TWO (i.e. the 5 after the 1 in the cron.daily line)
++ plus a random time between 0 and 45 minutes as defined by RANDOM_DELAY
Tham khảo: http://linux.die.net/man/5/anacrontab