나는 cronfile을 가지고 있고 /home/pi/path/
에 심볼릭 링크를 만들었습니다 /etc/cron.d/cron_some_file
. 다음 줄과 함께 wget을 사용하여 cron 파일을 자동으로 업데이트하고 싶습니다(Raspberry Pi에 직접 액세스할 필요가 없도록 서버에서 변경하고 싶습니다).
1 */3 * * * root wget -m -nH --ftp-user=user --ftp-password=pass ftp://ip_addres_of_the_server/path
수동으로 작성하면 일부 파일에서 변경된 내용이 있으면 다운로드되지만 cronfile에서는 작동하지 않습니다. syslog 파일을 살펴보니 다음과 같은 오류가 발생했습니다.
**cron[451]:Error: bad username; while reading /etc/cron.d/cron_some_file**
**cron[451]:(*system*cron_some_file) ERROR(Syntax error, this crontab file will be ignored)**
이 문제를 어떻게 해결할 수 있는지 아는 사람이 있나요?