Systemd Timer 定时任务

Systemd Timer 定时任务 1 sudo vim /usr/lib/systemd/system/task.timer 1 2 3 4 5 6 7 8 9 10 [Unit] Description=Task Description [Timer] OnCalendar=*-*-* 06:00:00 AccuracySec=1s Unit=lock.service [Install] WantedBy=multi-user.target be carefully with AccuracySec, without it your task will be delayed for tens of seconds Specify the accuracy the timer shall elapse with. Defaults to 1min. The timer is scheduled to elapse within a time window starting with the time specified in OnCalendar=, OnActiveSec=, OnBootSec=, OnStartupSec=, OnUnitActiveSec= or OnUnitInactiveSec= and ending the time configured with AccuracySec= later....

五月 12, 2023 · Sheffery Shake