Operations 4 min read

Mastering Zeit: Install and Schedule Tasks Graphically on Ubuntu

This guide explains how to install the open‑source Zeit tool on Ubuntu 20.04, launch its graphical interface, and use it to create both one‑time and recurring scheduled tasks via the at and crontab back‑ends, complete with command examples and screenshots.

Liangxu Linux
Liangxu Linux
Liangxu Linux
Mastering Zeit: Install and Schedule Tasks Graphically on Ubuntu

Zeit is an open‑source graphical utility for Linux that lets you schedule one‑time or recurring jobs using the familiar at and crontab mechanisms. It also includes an alarm and timer that can play a sound to notify the user.

System Environment

Ubuntu 20.04

Installation

Add the official PPA repository and install the package:

sudo add-apt-repository ppa:blaze/main
sudo apt install zeit

Launching Zeit

Simply type Zeit in a terminal or run it from the applications menu.

Running a One‑Time Command with at

Open the “Nonperiodic Commands” view (Menu → View → Nonperiodic Commands or press Ctrl+N), click “Add Command”, and schedule a command. Example: create a log file in ~/Downloads named with today’s date at 11:34.

NOW=$(date +%F)
 touch /home/bob/Downloads/log_${NOW}.txt

After the scheduled time, press Ctrl+R to refresh; the task disappears, indicating successful execution.

Creating a Recurring Task with crond

Open the “Periodic Tasks” view (Menu → View → Periodic Tasks or press Ctrl+P). Enter a description, the command, and the schedule. Example: back up a log directory every day at midnight.

Verify the entry with the standard command:

crontab -l

These steps demonstrate how Zeit provides a user‑friendly GUI for managing both one‑off and periodic jobs on Ubuntu, leveraging the underlying cron and at subsystems.

Original Source

Signed-in readers can open the original source through BestHub's protected redirect.

Sign in to view source
Republication Notice

This article has been distilled and summarized from source material, then republished for learning and reference. If you believe it infringes your rights, please contactadmin@besthub.devand we will review it promptly.

task schedulingLinuxcronUbuntuZeit
Liangxu Linux
Written by

Liangxu Linux

Liangxu, a self‑taught IT professional now working as a Linux development engineer at a Fortune 500 multinational, shares extensive Linux knowledge—fundamentals, applications, tools, plus Git, databases, Raspberry Pi, etc. (Reply “Linux” to receive essential resources.)

0 followers
Reader feedback

How this landed with the community

Sign in to like

Rate this article

Was this worth your time?

Sign in to rate
Discussion

0 Comments

Thoughtful readers leave field notes, pushback, and hard-won operational detail here.