Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要使用我的 Ubuntu 安装包安装一些 cron 作业。每天或每小时运行的那些很容易:我可以从/etc/cron.daily我的脚本创建一个符号链接。
/etc/cron.daily
但是,我也有一个脚本,我想每 10 分钟运行一次。没有这样的事情/etc/cron.minutely。此外,我不确定如何在不使用交互式编辑器 ( crontab -e) 的情况下编辑 crontab。解决此问题的最佳方法是什么?
/etc/cron.minutely
crontab -e
您的包可以简单地放入一个文件/etc/cron.d/
/etc/cron.d/
文本文件应该包含这样的内容,每 10 分钟运行一次命令:
*/10 * * * * root /path/to/command
谷歌“cron 格式”以获取更多信息,是的,这属于 askubuntu 或超级用户。
您需要将用户名 (root) 添加到该行,如上所示。显然这对于 cron.d 中的文件是必要的,但我找不到确定的文档。**
cron 应该自动选择这个新工作。