Triggering regular tasks with Systemd
Winding Up the Clock
If you want Systemd to activate the timer directly at system startup, you need an [Install]
section in the timer unit. The WantedBy=
setting tells which other units the timer should start with. In Listing 2, the WantedBy=timers.target
setting ensures that Systemd starts the timer together with all other timers at the regular system startup time.
If you want Systemd to start the timer at startup time, you have to enable it explicitly (Listing 4, first line). Alternatively, you can start the timer manually (second line). All currently configured timers are listed by the systemctl list-timers
command (Figure 2).
Listing 4
Enabling at Startup
$ systemctl enable backup.timer $ systemctl start backup.timer
In the table under Next
, you can read when the system timer will execute the task the next time. The time remaining until then is in the Left
column. Similarly, you can see under Load
when systemd-timer
last executed the task. How long ago that was is shown in the Passed
column. Under Unit
, you will find the name of the corresponding timer and thus its configuration file.
You can end the display by pressing [Q]. By default, Systemctl only presents timers that are currently enabled. You can display the inactive timers on screen by appending the --all
parameter.
Snooze Button
If required, each timer can be stopped manually (Listing 5, first line) and disabled (second line). The manpage [1], which goes by the name of systemd.timer
, provides explanations for all presented settings. man systemd.time
provides further information on the format of dates and times and offers numerous additional examples.
Listing 5
Manual Stop
$ sudo systemctl stop my.timer $ sudo systemctl disable my.timer
Short-Term Alarm
If you want Systemd to make a single backup in exactly 30 minutes, use systemd-run
. The command looks like the first line of Listing 6. The /usr/bin/backup.sh /mnt
command appended there is executed by Systemd at the specified time. Use the parameter --on-active
to tell it the waiting time.
Listing 6
Examples
$ systemd-run --on-active=30m /usr/bin/backup.sh /mnt $ systemd-run --on-calendar=weekly --unit backup.service
The time units again correspond to those in Table 1. In the example, Systemd interprets the 30m
as half an hour. Alternatively, use --on-calendar=
to enter a specific date. The details are again provided in the same way as in the timer unit. With appropriate time specifications such as weekly
, the action can execute repeatedly.
In any case, systemd-run
creates a new timer in the background without you needing to create a service file (Figure 3). If a suitable service unit already exists, you can alternatively let systemd-run
launch it. To do this, simply pass in the name of the service unit using the --unit
parameter. The example from the second line of Listing 6 starts the task stored in the backup.service
service unit every week.
The timers generated by systemd-run
only exist temporarily. If you use the --on-active
parameter, the timer disappears immediately after the action has been executed; in any case, it disappears after rebooting the system. systemd-run
only creates a timer for a service unit if no suitable timer unit exists.
« Previous 1 2 3 4 Next »
Buy this article as PDF
(incl. VAT)
Buy Linux Magazine
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Support Our Work
Linux Magazine content is made possible with support from readers like you. Please consider contributing when you’ve found an article to be beneficial.
News
-
Gnome 48 Debuts New Audio Player
To date, the audio player found within the Gnome desktop has been meh at best, but with the upcoming release that all changes.
-
Plasma 6.3 Ready for Public Beta Testing
Plasma 6.3 will ship with KDE Gear 24.12.1 and KDE Frameworks 6.10, along with some new and exciting features.
-
Budgie 10.10 Scheduled for Q1 2025 with a Surprising Desktop Update
If Budgie is your desktop environment of choice, 2025 is going to be a great year for you.
-
Firefox 134 Offers Improvements for Linux Version
Fans of Linux and Firefox rejoice, as there's a new version available that includes some handy updates.
-
Serpent OS Arrives with a New Alpha Release
After months of silence, Ikey Doherty has released a new alpha for his Serpent OS.
-
HashiCorp Cofounder Unveils Ghostty, a Linux Terminal App
Ghostty is a new Linux terminal app that's fast, feature-rich, and offers a platform-native GUI while remaining cross-platform.
-
Fedora Asahi Remix 41 Available for Apple Silicon
If you have an Apple Silicon Mac and you're hoping to install Fedora, you're in luck because the latest release supports the M1 and M2 chips.
-
Systemd Fixes Bug While Facing New Challenger in GNU Shepherd
The systemd developers have fixed a really nasty bug amid the release of the new GNU Shepherd init system.
-
AlmaLinux 10.0 Beta Released
The AlmaLinux OS Foundation has announced the availability of AlmaLinux 10.0 Beta ("Purple Lion") for all supported devices with significant changes.
-
Gnome 47.2 Now Available
Gnome 47.2 is now available for general use but don't expect much in the way of newness, as this is all about improvements and bug fixes.