CHAPTER 9: PERIODIC PROCESSES
Original slides from Dr. James Walden at Northern Kentucky University.
$ ps -e | grep 'd$' | sort -k4 -u 1481 ? 00:00:00 atd 1060 ? 00:00:04 chronyd 1480 ? 00:00:20 crond 7947 ? 00:00:00 gvfsd 209 ? 00:00:00 kaluad 98 ? 00:00:00 kauditd 107 ? 00:00:00 kblockd 104 ? 00:00:16 khugepaged 99 ? 00:00:01 khungtaskd 106 ? 00:00:00 kintegrityd 208 ? 00:00:00 kmpath_rdacd 103 ? 00:00:00 ksmd 1123 ? 00:00:18 ksmtuned 2 ? 00:00:01 kthreadd 197 ? 00:00:00 kthrotld 307691 ? 00:00:00 kworker/0:1H-kblockd 291632 ? 00:00:00 kworker/10:3H-kblockd 3779959 ? 00:00:00 kworker/11:0H-kblockd 307688 ? 00:00:00 kworker/2:0H-kblockd 226483 ? 00:00:00 kworker/4:3H-kblockd 4100205 ? 00:00:00 kworker/5:2H-kblockd 32689 ? 00:00:00 kworker/6:1H-kblockd 83784 ? 00:00:00 kworker/7:2H-kblockd 408496 ? 00:00:01 kworker/8:3H-kblockd 4098823 ? 00:00:01 kworker/9:3H-kblockd 289677 ? 00:00:00 kworker/u24:0-nfsiod 327941 ? 00:00:00 kworker/u24:1-nfsiod 356827 ? 00:00:00 kworker/u24:2-nfsiod 224536 ? 00:00:01 kworker/u24:3-nfsiod 385411 ? 00:00:00 kworker/u24:4-xprtiod 1837 ? 00:00:00 lockd 1047 ? 00:00:01 lsmd 111 ? 00:00:00 md 1821 ? 00:00:00 nfsiod 1386 ? 00:00:00 oddjobd 1997 ? 00:02:24 pmcd 1055 ? 00:06:17 polkitd 14 ? 00:04:07 rcu_sched 1389 ? 00:00:00 rhsmcertd 1030 ? 00:00:01 rpcbind 1036 ? 00:00:00 rpciod 1746 ? 00:00:00 rpc.statd 1383 ? 00:02:21 rsyslogd 1376 ? 00:00:00 sshd 1048 ? 00:00:01 sssd 1 ? 00:18:10 systemd 1280 ? 00:03:53 systemd-logind 691 ? 00:00:54 systemd-udevd 1385 ? 00:26:32 tuned 1752 ? 00:00:30 /usr/sbin/httpd 114 ? 00:00:00 watchdogd 1037 ? 00:00:00 xprtiod
syslogd
: system logging daemon
sshd
: daemon to handle incoming ssh connections
nfsd
: network file system daemon
ypbind
: network information service server
crond
: task scheduler daemon
/var/spool/cron/
username
$ cat /usr/lib/systemd/system/crond.service [Unit] Description=Command Scheduler After=auditd.service nss-user-lookup.target systemd-user-sessions.service time-sync.target ypbind.service [Service] EnvironmentFile=/etc/sysconfig/crond ExecStart=/usr/sbin/crond -n $CRONDARGS ExecReload=/bin/kill -HUP $MAINPID KillMode=process Restart=on-failure RestartSec=30s [Install] WantedBy=multi-user.target $ ls -l /usr/sbin/crond -rwxr-xr-x 1 root root 75712 Apr 6 2024 /usr/sbin/crond
Is crond
SUID? How does it execute your crontab as you?
Comment lines starting with ‘#’ are ignored by the daemon. Otherwise:
Label | Range | Description |
---|---|---|
Minute | 0–59 | Minute of Hour |
Hour | 0–23 | Hour of Day |
Day | 1–31 | Day of Month |
Month | 1–12 | Month of Year (or “Jan”, “Feb”, …) |
Weekday | 0–6 | Day of Week (0=Sunday) (or “Sun”, “Mon”, …) |
# Minute, Hour, Day of Month, Month, Weekday * * * * * echo Every minute 00 * * * * echo Every hour 00 1 * * * echo Every day at 1:00ᴀᴍ 30 */3 * * * echo Every three hours, on the half-hour 00 23 * * 0 echo 11:00ᴘᴍ Sundays */5 9-17 * * 1-5 echo Every five minutes, during working hours 45 10,22 * * 0,6 echo 10:45ᴀᴍ and 10:45ᴘᴍ on weekends 00 8 25 12 * echo Christmas morning
@reboot : Run once after reboot. @yearly : Run once a year, i.e., “0 0 1 1 *”. @annually : Run once a year, i.e., “0 0 1 1 *”. @monthly : Run once a month, i.e., “0 0 1 * *”. @weekly : Run once a week, i.e., “0 0 * * 0”. @daily : Run once a day, i.e., “0 0 * * *”. @hourly : Run once an hour, i.e., “0 * * * *”.
cron
can’t help you with:
PATH=/usr/local/bin:/home/bonehead/bin:/bin:/usr/bin MAILTO=Bonehead@ColoState.Edu 0 2 1-10 * * du -h -c -d=1 /
.chsrc
, .bashrc
) are not processed
crontab
filename installs filename as crontab
crontab -e
edits your crontab interactively
crontab -l
lists the current crontab file
crontab -l >~/.crontab-backup
protects you from system reconfiguration.
crontab -r
removes the crontab file
root
crontab -r smith
/etc/cron.allow
and /etc/cron.deny
specify which
users can submit crontab files
30 4 25 * * mail -s "TPS" bing%End-of-month reports due
Modified: 2017-09-12T10:38 User: Guest Check: HTML CSSEdit History Source |
Apply to CSU |
Contact CSU |
Disclaimer |
Equal Opportunity Colorado State University, Fort Collins, CO 80523 USA © 2015 Colorado State University |
![]() |