From 3d980ba0942ba6ded1a5074894d945aae093a504 Mon Sep 17 00:00:00 2001 From: Hugh Ratsch Date: Sat, 15 Feb 2025 12:28:59 -0600 Subject: [PATCH] updated notes --- src/rhcsa.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/src/rhcsa.md b/src/rhcsa.md index 28a5e7b..2ca4012 100644 --- a/src/rhcsa.md +++ b/src/rhcsa.md @@ -212,6 +212,24 @@ sudo nano /etc/fstab # Add the following line to the fstab file: UUID=1234567890 sudo mount -a # Mount all filesystems ``` +## Automatic Services & Task Scheduling + +### cron +```bash +sudo crontab -e # Edit the cron table + +sudo crontab -l # List the cron table + +### crontab format +``` +* * * * * command # Run the command every minute + +0 12 * * * command # Run the command at 12:00 PM + +0 0 * * * command # Run the command at 12:00 AM +``` + +