に cron ファイルがあり/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
手動で記述すると、一部のファイルに変更があった場合にダウンロードされますが、cron ファイルでは機能しません。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)**
これを修正する方法を誰か知っていますか?