在 CentOS 上安装 crontab 并不需要额外的依赖,因为 crontab 本身就是随系统一起提供的
打开终端。
输入以下命令以编辑 crontab 文件:
crontab -e
* * * * * /path/to/command arg1 arg2
| | | | |
| | | | ----- Day of week (0 - 7) (Sunday = 0 or 7)
| | | ------- Month (1 - 12)
| | --------- Day of month (1 - 31)
| ----------- Hour (0 - 23)
------------- Minute (0 - 59)
保存并退出编辑器。
输入以下命令以确保您的 cron 服务正在运行:
sudo systemctl status crond
如果服务未启动,请使用以下命令启动它:
sudo systemctl start crond
现在您已经在 CentOS 上成功安装了 crontab,并可以开始设置和管理您的定时任务了。