##########################
###unit3系统延迟及定时机制###
##########################
###1.at延时
at time
at> 动作
at>ctrl+d
at> <ETO>
at -l ###查看任务
atrm 任务号 ###结束任务
当执行动作有输出时
输出内容会以邮件的形式发送给人物的发起人
[root@desktop18 mnt]# mail
Heirloom Mail version 12.5 7/5/10. Type ? for help.
"/var/spool/mail/root": 1 message 1 new
>N 1 root Sun Oct 30 01:57 19/598 "adf"
q
at用户的黑白名单
/etc/at.deny ###默认存在生效(黑名单)
/etc/at.allow ###默认不存在,一旦存在/etc/at.deny失效(白名单)
###2.定期任务
命令方式发起:
crontab -u username -e
MM hh dd mm ww ###(M分钟,h小时,d天,m月,w周)
field allowed values
----- --------------
minute 0-59
hour 0-23
day of month 1-31
month 1-12 (or names, see below)
day of week 0-7 (0 or 7 is Sunday, or use names)
MM/2 ###每隔两分钟
hh1-hh2 ###几点到几点之间
hh1,hh2 ###几点和几点
crontab -l ###查看任务
crontab -u username -r ###删除任务
/etc/ceontab
# Example of job definition:
# .---------------- minute (0 - 59)
# | .------------- hour (0 - 23)
# | | .---------- day of month (1 - 31)
# | | | .------- month (1 - 12) OR jan,feb,mar,apr ...
# | | | | .---- day of week (0 - 6) (Sunday=0 or 7) OR sun,mon,tue,wed,thu,fri,sat
# | | | | |
# * * * * * user-name command to be executed
文件的方式发起
vim /etc/cron.d/filename
MM hh dd mm www USERNAME 动作
echo 'MM hh dd mm ww USERNAME 动作'>/etc/cron.d/filename
crontab黑白名单
/etc/cron.deny ###黑名单
/etc/cron.allow ###白名单
此文件只针对crontab命令的使用
###3.系统临时文件的管理
vim /usr/lib/tmpfile.d/*.conf
type filename perm user group time
d /mnt/westos 1777 root root 10s
systemd-tmpfiles --create /usr/lib/tmpfiles.d/*.conf ###读取配置文件
systemd-tmpfiles --clean /usr/lib/tmpfiles.d/*.conf ###执行配置文件