Debian Jessie에서 내가 한 일은 다음과 같습니다.
- 통해 cron 설치
apt-get install cron
backup_crontab
파일을 넣다/etc/cron.d/
그러나 작업이 실행되지 않습니다.
다음은 몇 가지 출력입니다.
/# crontab -l
no crontab for root
/# cd /etc/cron.d && ls
backup_crontab
/etc/cron.d# cat backup_crontab
0,15,30,45 * * * * /backup.sh >/dev/null 2>&1
특정 crontab을 활성화하거나 cron "서비스"자체를 활성화하기 위해해야 할 일이 있습니까?
ls /etc/cron.d
동등합니다 cd /etc/cron.d && ls
. 유일한 차이점은 작업 디렉토리가 변경되지 않는다는 것입니다.