É quando os scripts cron.daily
são executados ... Por padrão, ele é executado diariamente logo após as 4:00 da manhã.
De /etc/crontabs
SHELL=/bin/bash
PATH=/sbin:/bin:/usr/sbin:/usr/bin
MAILTO=root
HOME=/
# run-parts
01 * * * * root run-parts /etc/cron.hourly
02 4 * * * root run-parts /etc/cron.daily <-- THIS ONE!!
22 4 * * 0 root run-parts /etc/cron.weekly
42 4 1 * * root run-parts /etc/cron.monthly
E em /etc/cron.daily
.
O culpado provavelmente é seu mlocate.cron
, que executa updatedb
e pode ser bastante intensivo em alguns sistemas:
#!/bin/sh
nodevs=$(< /proc/filesystems awk '$1 == "nodev" { print $2 }')
renice +19 -p $$ >/dev/null 2>&1
/usr/bin/updatedb -f "$nodevs"