10

Does Linux have an alternative to Windows Task Scheduler, another way like a script or an inbuilt function?

Niklas
  • 203

4 Answers4

9

cron is the Linux command-line scheduler. Use crontab -e to create (or edit) your cron jobs.

See Cron HowTo and crontab (5) for details.

Pat J
  • 218
6

Scheduled tasks

Install via the software center

It is the Task Scheduler in Gnome.

In other way it is a GUI for Cron.

Can be installed with Software Center.

If use Terminal for installation:

sudo apt-get install gnome-schedule

enter image description here

2

You are looking for anacron function.

http://linux.about.com/library/cmd/blcmdl8_anacron.htm

v010dya
  • 1,472
2

cron jobs

how to do it can be found in the link here