답변:
적절한 업데이트는이라는 스크립트에 의해 트리거됩니다 /etc/cron.daily/apt
. /etc/cron.daily
매일 발생하지만 동시에 모든 스크립트가 포함되어 있습니다. Update Manager가 업데이트되는 시간을 변경하려면 모든 /etc/cron.daily
스크립트가 실행 되는 시간을 변경해야합니다 .
그렇게하려면 /etc/crontab
파일 을 편집해야 합니다.
sudoedit /etc/crontab # or: gksu gedit /etc/crontab
이것은 cron
다음과 같은 약간의 표준 파일입니다.
# /etc/crontab: system-wide crontab
# Unlike any other crontab you don't have to run the `crontab'
# command to install the new version when you edit this file
# and files in /etc/cron.d. These files also have username fields,
# that none of the other crontabs do.
SHELL=/bin/sh
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
# m h dom mon dow user command
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 )
#
이것으로부터 우리는 cron.daily
오전 6시 25 분에 트리거를 볼 수 있습니다 . 오전 4시에 시작하려면 두 번째 타임 라인을 다음과 같이 바꾸십시오.
0 4 * * * root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.daily )
형식에 대한 추가 도움이 필요하면 Wikipedia의 Cron 페이지에서 비정상적으로 기술적 인 페이지가 있습니다.
고마워요 Amber는 loco 팀 IRC 채널에서 질문 한 내용을 대신하여 이것을 요청했습니다. 나는 그것이 cron 일이라고 생각하고 이것을 스스로 알아 내려고 노력하면서 (/etc/cron.*) 파고 들었다. 이제 아침 뉴스 비디오를 보면서 CPU 사용량이 급증하지 않습니다.
한 시간 시간 이동이있는 것 같습니다. 일광 절약 시간 때문인 것 같습니다. 오늘 아침의 간식입니다.
Apr 21 07:30:01 flounder CRON[21032]: (root) CMD (start -q anacron || :)
Apr 21 07:30:01 flounder anacron[21035]: Anacron 2.3 started on 2011-04-21
Apr 21 07:30:01 flounder anacron[21035]: Will run job `cron.daily' in 5 min.
Apr 21 07:30:01 flounder anacron[21035]: Will run job `cron.weekly' in 10 min.
Apr 21 07:30:01 flounder anacron[21035]: Jobs will be executed sequentially
Apr 21 07:35:01 flounder anacron[21035]: Job `cron.daily' started
이것을 해결 표시하십시오.
APT::Periodic::RandomSleep
APT 구성 설정으로 최대 절전 시간을 변경할 수 있습니다 . 최대 값0
은 항상 즉시 발생한다는 것을 의미합니다 ( 그러나 임의 수면이있는 이유를 기억하십시오! ).