🎁 New User? Get 20% off your first purchase with code NEWUSER20 Register Now →
Menu

Categories

Linux Beginner

What is Cron Job?

A scheduled task in Unix-like systems that runs automatically at specified times or intervals.

Cron is a time-based job scheduler. Users define tasks in a crontab file using a specific syntax: minute, hour, day of month, month, day of week, followed by the command. For example, "0 2 * * * /backup.sh" runs a backup script at 2 AM daily.

Cron is essential for system maintenance, log rotation, automated backups, and any recurring task.

Related Terms

Firewalld
A dynamic firewall management tool for Linux that provides a D-Bus interface for managing firewall rules with zones.
Sed
A stream editor for filtering and transforming text, commonly used for find-and-replace operations in files.
ACL (Access Control List)
An extension to standard Linux file permissions that allows setting fine-grained access rights for specific users and groups beyond owner/group/other.
RAID
Redundant Array of Independent Disks — a technology combining multiple physical drives into a single unit for performance, redundancy, or both.
Find
A powerful command for searching files and directories based on various criteria like name, size, type, and modification time.
Systemd Timer
A systemd unit that triggers services on a schedule or at specific events, serving as a modern alternative to cron jobs.
View All Linux Terms →