我的 rsync crontab 设置有问题。首先这是我的 crontable:
SHELL=/bin/sh
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
# m h dom mon dow user command
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 )
59 1 * * * root sudo rsync -r -o -v --progress --delete --size-only /home/dag/Musikk/ /media/dag/25019a70-1441-46dc-af5a-822545927f78/Musikk
这是最后一行。我有 KDE。我不知道在 crontab 中添加行时是否有什么需要特别注意的。我在 shell 中多次运行了该行,它完成了它的工作。
有人能提示我如何让 crontab 正确运行吗?
答案1
如果命令运行正常,则应该没有问题。但是,如果将 cron 添加到 root 的 crontab 中,则不必使用“sudo”。我建议您切换到 root( su - root ),然后将 cron 条目添加到 root 的 crontab 中,这样您就不必担心权限问题。如果复制不需要 root 权限,您可以直接在用户的 crontab 中执行此操作,而无需 sudo