Understanding Cron Expression Syntax
Simple string combinations can produce remarkable results. This holds true for regular expressions and the cron scheduling system alike. Both appear deceptively straightforward, yet improper usage can lead to amusing—or disastrous—outcomes. For instance, I once attempted to schedule a task to run every four hours and wrote the following express ...
Posted on Sun, 31 May 2026 22:07:12 +0000 by nikneven
CentOS 7 Cron Task Setup Guide
On CentOS systems, cron is the go-to utility for scheduling recurring tasks, though three scheduling tools exist for different use cases:
at One-time execution only; requires the atd backend daemon to run
cronie/crontab Recurring task execution; requires the crond daemon, with tasks managed via crontab
anacron Daily-based schedulin ...
Posted on Wed, 20 May 2026 00:10:13 +0000 by Vertical3
Mastering Job Scheduling with Crontab on Linux
Crontab enables users to schedule commands or scripts at predefined itnervals—minutes, hours, days, months, or weekdays. It is widely used for tasks like log rotation, backups, and system maintenance.
Before using crontab, ensure the cron daemon is running:
systemctl start cron # Start the service
systemctl enable cron # Enable at ...
Posted on Fri, 15 May 2026 10:36:38 +0000 by Tensing
CentOS System Administration: Common Configuration Tasks
Setting Up YUM Repository
sudo mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.bak
sudo curl -o /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-7.repo
sed -i -e '/mirrors.cloud.aliyuncs.com/d' -e '/mirrors.aliyuncs.com/d' /etc/yum.repos.d/CentOS-Base.repo
sudo yum makecache
Initial Configuration ...
Posted on Sun, 10 May 2026 04:38:23 +0000 by JukEboX