《Linux菜鸟入门2》系统定时延时任务

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了《Linux菜鸟入门2》系统定时延时任务相关的知识,希望对你有一定的参考价值。


第三单元   系统延时及定时机制

 

 

1.at延时

     at time

     at> 动作

     at>ctrl +d

     at> <EOT>

     

     at -l

     atrm 任务号

     当执行动作有输出时

     输出内容会以邮件的形式发送给任务的发起人

 

    at用户的黑白名单

    /etc/at.deny        ##默认存在并生效

    /etc/at.allow        ##默认不存在。一旦存在,/etc/at.deny失效

 

 

####2.定期任务

 

 

 

    命令方式发起:

    crontab -u username -e

    mm hh dd MM ww

    mm/2           ##每隔两分钟

    hh1-hh2        ##多少点到多少点

    hh1,hh2        ##多少点和多少点

     

     

    crontab -l           ##查看

    crotab -u usename -r    ##删除

     

 

 

 

    文件的方式发起

    vim /etc/cron.d/filename

    mm hh dd MM ww USENAME 动作

     

    echo ‘mm hh dd MM ww USENAME动作‘  >/etc/cron.d/filename

     

 

    黑白名单

    /etc/cron.deny

    /etc/cron.allow

 

 

 3.系统临时文件的管理

    vim /usr/lib/tmpfiles.d/*.conf

    type filename permusergrouptime

    d/mnt/westos1777rootroot10s

     

     

    systemd-tmpfiles --create /usr/lib/tmpfiles.d/*

    systemd-tmpfiles --clean /usr/lib/tmpfiles.d/*


本文出自 “12147236” 博客,转载请与作者联系!

以上是关于《Linux菜鸟入门2》系统定时延时任务的主要内容,如果未能解决你的问题,请参考以下文章

怎么在linux系统里设置延时/定时任务?

Linux 系统延时任务和定时任务

Linux系统中的定时任务及延时任务详解

linux中系统延时任务及定时任务

Linux(RadHat)基础学习—延时任务和定时任务

Linux中的定时和延时任务