การตั้งเวลางาน: `cron` และ `at`
ทำงานให้เป็นอัตโนมัติตามเวลาหรือช่วงเวลาที่กำหนดด้วยงาน `cron` และคำสั่ง `at`
การตั้งเวลางาน: `cron` และ `at` เป็นบทเรียน Linux Command Line Mastery ฟรีบน CoddyKit นี่คือบทเรียนที่ 1 จากทั้งหมด 4 บทเรียน คุณสามารถอ่านบทเรียนทั้งหมดด้านล่างฟรี — จากนั้นลองปฏิบัติด้วยตัวคุณเองในเบราว์เซอร์พร้อมตัวแก้ไขโค้ดในตัวและติวเตอร์ AI ตลอด 24/7 บทเรียนนี้เป็นส่วนหนึ่งของเส้นทางการเรียน Linux Command Line Mastery และความก้าวหน้าของคุณจะซิงค์ข้ามเว็บและแอป CoddyKit คอร์ส Linux Command Line Mastery มีบทเรียนทั้งหมด 4 บทเรียน
บางส่วนของบทเรียนนี้ยังไม่ได้รับการแปล และแสดงเป็นภาษาอังกฤษ
Automating Your Linux Tasks
In Linux, you often need to run tasks automatically. This could be anything from backing up files to generating reports.
Automation saves time and ensures tasks are performed consistently, even when you're not actively at the keyboard.
Introducing `cron` for Recurring Jobs
cron is a powerful utility that helps you schedule commands or scripts to run automatically at specific intervals. Think of it as your personal assistant for repetitive tasks!
These scheduled tasks are often called "cron jobs".
Your Personal `crontab` File
Each user has their own crontab file, which lists their scheduled cron jobs.
- To edit your crontab:
crontab -e - To list your current jobs:
crontab -l - To remove all your jobs:
crontab -r(use with caution!)
When you edit, it typically opens in a text editor like Nano or Vim.
crontab -eUnderstanding `cron` Job Structure
A cron job entry has six parts:
minute hour day_of_month month day_of_week command_to_execute- Minute: 0-59
- Hour: 0-23 (0 is midnight)
- Day of Month: 1-31
- Month: 1-12 (or Jan-Dec)
- Day of Week: 0-7 (0 or 7 is Sunday)
An asterisk (*) means "every" value for that field.
Practical `cron` Examples
Let's look at some common cron job examples you might add to your crontab file.
# Run a script every day at 3:00 AM
0 3 * * * /home/user/daily_backup.sh
# Run a command every Sunday at 10:30 PM
30 22 * * 0 echo "Weekly check!" >> /var/log/weekly.log
# Run every 15 minutes
*/15 * * * * /usr/bin/some_utilityHandy `cron` Shortcuts
For common schedules, cron offers special keywords:
@reboot: Run once after system startup.@hourly: Run once an hour.@daily: Run once a day (midnight).@weekly: Run once a week (midnight Sunday).@monthly: Run once a month (midnight on 1st).@yearly: Run once a year (midnight on Jan 1st).
These keywords replace the first five time fields.
Scheduling Single Tasks with `at`
While cron is for recurring tasks, the at command is perfect for scheduling a command to run only once at a specified future time.
It's useful for tasks that don't need to repeat, like running a report at the end of the day or a specific cleanup task.
How to Use the `at` Command
To schedule a task with at, you provide the time and then type the command(s) you want to run. Press Ctrl+D to finish.
Here's how to schedule a simple message to appear in 1 minute:
echo "echo 'Task completed by at!'" | at now + 1 minuteManaging Your `at` Queue
You can manage your scheduled at jobs:
- To list all pending
atjobs:atq - To remove a specific job:
atrm [job_number]
Each job listed by atq will have a unique job number.
# List all pending 'at' jobs
atq
# Remove the job with ID 42
atrm 42`cron` & `at` Quick Check
Consider the following scenario:
You need to schedule a script named /opt/cleanup.sh to run every Tuesday at 4:45 AM.
Which crontab entry correctly achieves this?
Recap: `cron` and `at`
Great job! You've learned how to automate tasks on Linux:
cronis for scheduling recurring jobs using a `crontab` file and specific time syntax.atis for scheduling commands to run once at a future time.
These tools are essential for system administration and keeping your systems running smoothly without constant manual intervention.
คำถามที่พบบ่อย
บทเรียน “การตั้งเวลางาน: `cron` และ `at`” ฟรีหรือไม่
ใช่ — ข้อความเต็มของ “การตั้งเวลางาน: `cron` และ `at`” ฟรีให้อ่านที่นี่บนเว็บ เพื่อปฏิบัติแบบโต้ตอบ (ตัวแก้ไขโค้ดในตัวและติวเตอร์ AI ตลอด 24/7) และปลดล็อคส่วนที่เหลือของคอร์ส Linux Command Line Mastery ให้อัปเกรดเป็น CoddyKit PRO คอร์ส Linux Command Line Mastery มีบทเรียนทั้งหมด 4 บทเรียน
คุณจะเรียนรู้อะไรในบทเรียน “การตั้งเวลางาน: `cron` และ `at`”
ทำงานให้เป็นอัตโนมัติตามเวลาหรือช่วงเวลาที่กำหนดด้วยงาน `cron` และคำสั่ง `at` คุณปฏิบัติ Linux Command Line Mastery ด้วยโค้ดที่ใช้งานได้จริงที่คุณเรียกใช้โดยตรงในเบราว์เซอร์ และติวเตอร์ AI ตลอด 24/7 ตอบคำถามของคุณขณะที่คุณไปผ่านบทเรียน
คุณต้องมีประสบการณ์ก่อนที่จะเริ่มเรียน Linux Command Line Mastery หรือไม่
ไม่จำเป็นต้องมีประสบการณ์มาก่อน Linux Command Line Mastery บน CoddyKit ออกแบบมาสำหรับผู้เริ่มต้นไปจนถึงผู้เรียนขั้นสูง คุณสามารถเริ่มต้นที่นี่หรือเริ่มจากตัวแรกและเรียนด้วยความเร็วของคุณเอง นี่คือบทเรียนที่ 1 จากทั้งหมด 4 บทเรียน
บทเรียน “การตั้งเวลางาน: `cron` และ `at`” ใช้เวลานานแค่ไหน
บทเรียน CoddyKit ส่วนใหญ่ใช้เวลาประมาณ 5–10 นาที แต่ละบทเรียนจึงสั้นและเป็นแบบโต้ตอบ คุณสามารถก้าวหน้าอย่างต่อเนื่องและกลับมาเรียนต่อจากตรงที่เพิ่งหยุดบนเว็บและแอปได้เลย
ฉันเขียนและรันโค้ดในบทเรียน Linux Command Line Mastery นี้ได้ไหม
ได้ บทเรียน Linux Command Line Mastery ทุกบทมีตัวแก้ไขโค้ดในตัว คุณจึงเขียนและรันโค้ดจริงได้เลยในเบราว์เซอร์ และได้รับข้อเสนอแนะจาก AI ในทันที — ไม่ต้องติดตั้งในเครื่องของคุณ
บทเรียนทั้งหมดในหลักสูตรนี้
- การตั้งเวลางาน: `cron` และ `at`
- การจัดการบริการ: `systemctl` (systemd)
- การทำงานอัตโนมัติด้วยฟังก์ชันเชลล์
- การบันทึกเหตุการณ์แบบรวมศูนย์และการหมุนเวียนด้วย journald และ logrotate