Editing the crontab
Last modified on July 24, 2026 • 1 min read • 158 wordsWe have a shared directory (/home/shared) on our computer and a usergroup called “shared”.
chgrp -R shared /home/sharedchmod -R 744 /home/sharedIn order to do this we edited (as root of course) the /etc/crontab file by adding the line: */5 * * * * root run-parts /etc/cron.minutelyThis means execution every 5 minutes, every hour, every day, every month, every weekday the script run-parts should be executed as root taking all scripts from the /etc/cron.minutely as argument (we created this directory newly in addition to the already existing /etc/cron.hourly, etc.). We restarted crond (the crontab deamon) via the GUI (under RedHat 9 Menu-System Settings-Server Settings-Services).