惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Microsoft Security Blog
Microsoft Security Blog
WordPress大学
WordPress大学
Stack Overflow Blog
Stack Overflow Blog
D
DataBreaches.Net
罗磊的独立博客
博客园 - 司徒正美
Last Week in AI
Last Week in AI
The Cloudflare Blog
大猫的无限游戏
大猫的无限游戏
Microsoft Azure Blog
Microsoft Azure Blog
B
Blog RSS Feed
The GitHub Blog
The GitHub Blog
宝玉的分享
宝玉的分享
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
小众软件
小众软件
Jina AI
Jina AI
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Hugging Face - Blog
Hugging Face - Blog
B
Blog
博客园 - 【当耐特】
V
V2EX
Apple Machine Learning Research
Apple Machine Learning Research
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
酷 壳 – CoolShell
酷 壳 – CoolShell

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Learning Linux Task Automation with Cron and Crontab
Darshan · 2026-06-12 · via DEV Community

A beginner-friendly guide to understanding Cron, Crontab, and Linux task scheduling through hands-on practice.

Introduction

As part of my DevOps and Linux learning journey, I recently explored Cron and Crontab, two powerful tools used to automate repetitive tasks in Linux systems.

At first, the cron syntax looked intimidating:


I had no idea what all those asterisks meant.

However, after understanding the basics and performing some hands-on exercises, I realized that Cron is one of the most useful tools for Linux administrators, DevOps engineers, and backend developers.

In this blog, I'll share what I learned about Cron and Crontab, how I created my first cron job, common scheduling expressions, troubleshooting tips, and how cron is used in real-world applications.

What is Cron?

Cron is a Linux utility/service that allows users to automate tasks by scheduling commands or scripts to run at specific times.

Instead of manually executing commands every day, every hour, or every week, Cron can do it automatically.

Real-World Use Cases

Cron is commonly used for:

Database backups
Log file cleanup
Monitoring server health
Sending automated emails
Running reports
Data synchronization
System maintenance tasks
How Cron Works
User


Crontab File


Cron Service (crond)


Execute Scheduled Commands

The Cron service continuously checks the scheduling rules stored in the Crontab file and executes commands when their scheduled time arrives.

What is Crontab?

Crontab stands for Cron Table.

It is a configuration file that contains information about:

When a task should run
Which command or script should run

Think of Crontab as a timetable for the Cron service.

Common Crontab Commands

List current cron jobs:

crontab -l

Edit cron jobs:

crontab -e

Remove all cron jobs:

crontab -r

After adding or modifying cron jobs, Cron automatically picks up the changes.

Understanding Cron Syntax

A cron job follows this format:

  • * * * * command_to_execute

Each asterisk represents a specific time field.

  • * * * * command

Field Breakdown
Field Allowed Values
Minute 0–59
Hour 0–23
Day of Month 1–31
Month 1–12
Day of Week 0–7
My Notes While Learning Cron

While studying Cron, I made the following notes:

Cron
Linux utility/service
Allows automation of tasks
Executes commands at scheduled intervals
Crontab
Stores scheduling information
Contains execution details for commands/scripts
Useful Commands
crontab -l

Lists active cron jobs.

crontab -e

Opens cron editor.

crontab -r

Removes existing cron jobs.

My First Cron Job (Hands-On)

To understand how Cron actually works, I created my first cron job.

Objective

Write the current date and time to a log file every minute.

Step 1: Create a Shell Script

Create a script file:

nano test.sh

Add the following code:

!/bin/bash

date >> /tmp/cron.log

Save the file.

Step 2: Make the Script Executable
chmod +x test.sh

Verify permissions:

ls -l test.sh

Output:

-rwxr-xr-x 1 user user 35 Jun 12 10:15 test.sh
Step 3: Open Crontab Editor
crontab -e

If this is your first time using crontab, Linux may ask you to select an editor.

Choose Nano if you're a beginner.

Step 4: Add a Cron Job

Add the following line:

  • * * * * /home/user/test.sh

Explanation:

Symbol Meaning

  • Every minute
  • Every hour
  • Every day
  • Every month
  • Every day of week

This means:

Execute test.sh every minute.

Save and exit.

Step 5: Verify Cron Job

Check if the cron job was saved.

crontab -l

Output:

  • * * * * /home/user/test.sh Step 6: Wait One Minute

After one minute, check the log file.

cat /tmp/cron.log

Example Output:

Thu Jun 12 10:20:01 IST 2026
Thu Jun 12 10:21:01 IST 2026
Thu Jun 12 10:22:01 IST 2026

Success! 🎉

The cron job is running automatically every minute.

Common Cron Scheduling Examples
Every Minute


Every 5 Minutes
*/5 * * * *
Every 30 Minutes
*/30 * * * *
Every Hour
0 * * * *
Every Day at Midnight
0 0 * * *
Every Day at 9 AM
0 9 * * *
Every Sunday
0 0 * * 0
Every Monday at 9 AM
0 9 * * 1
Troubleshooting Issues I Learned About

When working with cron jobs, several issues can prevent them from running.

  1. Cron Service Not Running

Check status:

systemctl status crond

Start service:

sudo systemctl start crond

Enable on boot:

sudo systemctl enable crond

  1. Script Doesn't Have Execute Permission

Wrong:

-rw-r--r--

Correct:

-rwxr-xr-x

Fix:

chmod +x script.sh

  1. Wrong File Path

Cron often fails because relative paths are used.

Wrong:

./test.sh

Correct:

/home/darshan/test.sh

Always use absolute paths.

  1. Checking Cron Logs

Ubuntu:

grep CRON /var/log/syslog

CentOS/RHEL:

journalctl -u crond

These logs help identify execution issues.

Cron in Backend Development

While learning Node.js, I discovered that cron jobs are widely used in backend applications.

A popular package is:

npm install node-cron

Example:

import cron from "node-cron";

cron.schedule("* * * * *", () => {
console.log("Running every minute");
});
Common Backend Uses
Sending reminder emails
Cleaning expired sessions
Generating reports
Database backups
Scheduled notifications
Data synchronization
What I Learned

After learning Cron and Crontab, I gained a better understanding of Linux automation.

My key takeaways were:

✅ Cron is a Linux scheduling service.

✅ Crontab stores scheduling instructions.

✅ Cron expressions define execution timing.

✅ Always use absolute paths in cron jobs.

✅ Logs are essential for troubleshooting.

✅ Cron is heavily used in DevOps and backend systems.

Conclusion

Cron may seem confusing initially because of its scheduling syntax, but once you understand the structure and create your first cron job, it becomes a powerful automation tool.

Learning Cron helped me understand how Linux systems automate repetitive tasks without manual intervention. Whether you're a Linux beginner, aspiring DevOps engineer, system administrator, or backend developer, Cron is a skill worth learning.

This hands-on exercise of creating my first cron job gave me practical experience with Linux task scheduling and showed me how simple automation can save time and reduce manual work.