Some cygwin commands are .exe, so you can run them with the standard Windows Scheduler, but others are not .exe extension so cant be run from dos (it seems like). For example I want updatedb to run nightly.
Any ideas on how to make cron work?
|
|
|
You need to also install If you want the cron jobs to send email of any output you'll also need to install either See Regarding programs without a |
||||
|
|
|
You have two options:
By the way, this isn't a programming question (http://stackoverflow.com/faq). |
|||||||||||
|
|
hat tip http://linux.subogero.com/894/cron-on-cygwin/ Start the cygwin-setup and add the “cron” package from the “Admin” category. We’ll run cron as a service by user SYSTEM. Poor SYSTEM therefore needs a home directory and a shell. The “/etc/passwd” file will define them.
The start the service:
Local users can now define their scheduled tasks like this (crontab will start your favourite editor):
Domain users: it does not work. Poor cron is unable to run scheduled tasks on behalf of domain users on the machine. But there is another way: cron also runs stuff found in the system level cron table in “/etc/crontab”. So insert your suff there, so that SYSTEM does it on its own behalf:
Finally a few words about crontab entries. They are either environment settings or scheduled commands. As seen above, on Cygwin it’s best to create a usable PATH. Home dir and shell are normally taken from “/etc/passwd”. As to the columns of scheduled commands see the manual page. If certain crontab entries do not run, the best diagnostic tool is this:
|
|||
|
|
Just wanted to add that the options to cron seem to have changed. Need to pass -n rather than -D.
|
|||
|
|
|
I figured out how to get the Cygwin cron service running automatically when I logged on to Windows 7. Here's what worked for me: Using Notepad, create file C:\cygwin\bin\Cygwin_launch_crontab_service_input.txt with content "no" on the first line and "yes" on the second line (without the quotes). These are your two responses to prompts for 'cron-config'. Create file C:\cygwin\Cygwin_launch_crontab_service.bat with content: @echo off C: chdir C:\cygwin\bin bash cron-config < Cygwin_launch_crontab_service_input.txt Add a Shortcut to the following in the Windows Startup folder: Cygwin_launch_crontab_service.bat See http://www.sevenforums.com/tutorials/1401-startup-programs-change.html if you need help on how to add to Startup. BTW, you can optionally add these in Startup if you would like: Cygwin XWin Server The first one executes C:\cygwin\Cygwin.bat and the second one executes C:\cygwin\bin\run.exe /usr/bin/bash.exe -l -c /usr/bin/startxwin.exe |
|||
|
|