我有一個 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 中它不起作用。我查看了系統日誌文件,收到以下錯誤:
**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)**
有誰知道我該如何解決這個問題?