I want to schedule a task to run on a regular basis and have heard that Cron is the way to do this.
How do I add Cron jobs in Ubuntu?
I want to schedule a task to run on a regular basis and have heard that Cron is the way to do this.
How do I add Cron jobs in Ubuntu?
Put a shell script in one of these folders:
/etc/cron.daily
,/etc/cron.hourly
,/etc/cron.monthly
or/etc/cron.weekly
.If these are not enough for you, you can add more specific tasks e.g. twice a month or every 5 minutes. Go to the terminal and type:
This will open your personal crontab (cron configuration file). The first line in that file explains it all! In every line you can define one command to run and its schedule, and the format is quite simple when you get the hang of it. The structure is:
For all the numbers you can use lists, e.g.
5,34,55
in the minutes field will mean run at 5 past, 34 past, and 55 past whatever hour is defined.You can also use intervals. They are defined like this:
*/20
. This example means every 20th, so in the minutes column it is equivalent to0,20,40
.So to run a command every Monday at 5:30 in the afternoon:
or every 15 minutes
Note that the day-of-week goes from 0-6 where 0 is Sunday.
You can read more here.
If the job you want to run can be run with the same privileges as your user I recommend using a user crontab which you can edit by running
EDITOR="gedit" crontab -e
(which will use gedit to edit the crontab file) or simplycrontab -e
(which will use the default editor) in a terminal.If you want to run something every 10 minutes, for example, you add a line like this
and save the file.
You can see the contents of the user crontab with
crontab -l
.To add a cron job that runs as root, you can edit root's crontab by running
sudo crontab -e
.The most flexible way is to use the system crontab
/etc/crontab
which you can edit only with root privileges. In this file, the user each command is to be run as is specified, so you can run your commands as root (in case you need that level of privilege) or any other user on the system.For example, if you want to run something every 10 minutes as root, you'd add a line like this
(notice the addition of the user to the line)
You can see the contents of the system crontab file with
cat /etc/crontab
.More details at: https://help.ubuntu.com/community/CronHowto
If you prefer to do it using a GUI, you can go to the Software Center and install Scheduled tasks (or run
sudo apt-get install gnome-schedule
). It will provide a powerful GUI to add cron tasks.Note that if you use this method, tasks by default will be executed as your own user, not as root. This is usually a good thing.
I recommend KDE's Task Scheduler (
kde-config-cron
) . Access it from the System Settings in the Task Scheduler module there.It manages both personal and system Crontabs, and the ease of creating the time boundaries greatly surprised me (see the screenshot below). I think this part is really underrated.
I wanted to set a Cron job to run through a bash script, so executing the script would add a cron job.
I realised that when you make use of:
Then it creates the file:
/var/spool/cron/crontabs/root
Where root is the name of the user running running the crontab command. So based on this and in 14.04 at least, we can execute the following bash commands to create a new Cron job:
We also need to set the correct ownership for the file:
And set the correct permissions:
If when you run
crontab -e
there are already Cron jobs in the list, then you are able append to the list using the following command:KDE Task Scheduler will not work in regular Ubuntu. It works only in KDE Systems like KUbuntu. For non KDE system you will prefer to use gnome-schedule
The app is Scheduled tasks in the Dash.
Example of running script
test_cron.sh
by cron every minute on Ubuntu 18.04 using symbolic link:test_cron.sh
file:If you want to use environment variables in your script like
$USER
in paths it is better to type precise path, bash will not know your variables at execution time.myname
is user name (part of root group, I am not sure that root privileges are necessary).Allow users to set cron jobs, file will be created if necessary:
The path to script is
/home/myname/shell/test_cron.sh
I changed the owner and made it executable:
I added symbolic link:
Logged as
myname
I added new task to executetest_cron
every minute.To check if the command in the list:
To check execution
Considering you have multiple cron jobs with particular user and they don't share same schedule. You can just simple create file under
/etc/cron.d/
Lets say file name ismyjobs
then just write all your schedulers in that file and then run following command.crontab -u <username> /etc/cron.d/myjobs