답변:
/etc/crontab
그것을 보면 06:25에 실행되어야합니다 .
17 * * * * root cd / && run-parts --report /etc/cron.hourly
25 6 * * * root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.daily )
47 6 * * 7 root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.weekly )
52 6 1 * * root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.monthly )
약 7:35 am이지만 정확한 타이밍은 anacron에 따라 다릅니다.
기본적으로 cron은 /etc/cron.daily 작업 실행을 anacron에 위임합니다. / etc / crontab은 다음 줄을 포함합니다 :
25 6 * * * root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.daily )
그러나 이것은 anacron 이 설치되지 않은 경우의 동작을 정의합니다
anacron을 설치하면 cron.daily 작업 실행은 / etc / anacrontab의 항목으로 제어됩니다.
1 5 cron.daily nice run-parts --report /etc/cron.daily
이 작업을 하루에 한 번 실행하면 5 분 정도 지연됩니다.
anacron 자체는 /ac/cron.d/anacron 파일에 지정된대로 오전 7시 30 분에 anacron을 실행하는 cron에 의해 실행됩니다.