๐ŸŽ New User? Get 20% off your first purchase with code NEWUSER20 ยท โšก Instant download ยท ๐Ÿ”’ Secure checkout 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

Network Namespace
A Linux kernel feature that provides isolated network stacks with independent interfaces, routing tables, and firewall rules.
Ulimit
A command that sets or displays resource limits for user processes, such as maximum open files or memory usage.
Disk Quota
A system for limiting the amount of disk space or number of files that individual users or groups can consume on a filesystem.
Symbolic Link
A special file that acts as a shortcut pointing to another file or directory in the filesystem.
Tmux
A terminal multiplexer that allows running multiple terminal sessions within a single window, with detach/reattach capability.
Shell
A command-line interface that interprets user commands and passes them to the operating system for execution.
View All Linux Terms โ†’