안녕하세요 귀중한 시간을 내어 주셔서 감사합니다.
여쭤보고 싶은것이
/etc/crontab 에 있는 기본적으로 되어있는
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 )
이것들이 모하는것 인지 몰르겠습니다.
그리고 두번째로는
아침알람 스크립트를 만들었습니다.
sleep 으로 사용시에는 정상적으로 동작하지만
crontab -e 로
원하는 분과 시간을 입력해서
분 시간 * * * /home/honam/sh/morningmp3.sh
넣었을경우 동작을 하지 않고 있습니다.
그래서 /val/log/syslog 를 확인 한결과
Sep 2 00:10:01 knight /USR/SBIN/CRON[8875]: (honam) CMD (/home/honam/sh/morningmp3.sh)
Sep 2 00:10:01 knight /USR/SBIN/CRON[8879]: (root) CMD ([ -x /usr/sbin/update-motd ] && /usr/sbin/update-motd 2>/dev/null)
이렇게 출력이 되고 있습니다.
조언 부탁드립니다.
감사합니다.