Which Two statements about crontab are true?
A. Every user may have their own crontab.
B Changing a crontab requires a reload/restart of the cron deamon.
C. The cron daemon reloads crontab files automatically when necessarly.
D. hourly is the same as "0 * * * *".
E. A cron daemon must run for each existing crontab.
---------------------------------------------------------------------
先看帮助
usage: crontab [-u user] file
crontab [-u user] [ -e | -l | -r ]
(default operation is replace, per 1003.2)
-e (edit user's crontab)
-l (list user's crontab)
-r (delete user's crontab)
-i (prompt before deleting user's crontab)
-s (selinux context)
可以用crontab -u username -e 编辑个人的计划文件,文件自动保存为/var/spool/cron/username。
所以every user may have their own crontab 是正确的。
---------------------------------------------------------------------
B为啥不对?因为更改之后,不需要重新启动cron 。
我们在设定crontab 时发现没有,计划的最小单位是分,不是秒或者其他的单位。
所以,cron工作时也是每一分钟扫描一次文件,看看有没有什么要做的工作。
---------------------------------------------------------------------
C正确,确实是自动工作的。
---------------------------------------------------------------------
D. hourly is the same as "0 * * * *".
ERROR!虽然是5位,但顺序是从小单位到大单位的哦!(最后一位,星期除外)
分钟 (0-59)
小時 (0-23)
日期 (1-31)
月份 (1-12)
星期 (0-6)//0代表星期天
---------------------------------------------------------------------
公布正确答案·【AC】