Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com X-MIMEOLE: Produced By Microsoft Exchange V6.0.6249.0 content-class: urn:content-classes:message Subject: RE: Problems with cron MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Date: Thu, 26 Jun 2003 17:11:54 -0400 Message-ID: X-MS-Has-Attach: X-MS-TNEF-Correlator: From: "Harig, Mark" To: "Jarrod Hermer" , Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from quoted-printable to 8bit by delorie.com id h5QLCFl19134 About your crontab file: * * * * root echo "Hello World!" 1. 'root' is not a valid value for the fifth field, which should be the day of the week. Possible values: '*', 0-7 (Sunday is 0 or 7), or use names of days. More details can be read in the manual page for crontab. Enter 'man 5 crontab' at the bash prompt. 2. Redirect the output of 'echo' to a file. Output that is not sent to a file is sent by email to the user. This is likely not configured properly yet on your machine and so the "Hello World!" string is simply lost. Try: * * * * * echo "hello world" > /tmp/hello.txt or * * * * * /usr/bin/date > /tmp/date.txt or, to get a list of the environment that your crontab knows about: * * * * * /usr/bin/env > /tmp/env.txt > -----Original Message----- > From: Jarrod Hermer [mailto:jarrod AT mybeat DOT net] > Sent: Thursday, June 26, 2003 11:37 AM > To: cygwin AT cygwin DOT com > Subject: Problems with cron > > > Hi, > > I have scoured the net, run cron_diagnose.sh (no reported errors) and > followed every suggestion I could find. Yet I cannot get cron to work. > > At the prompt I get the following error: > > Cygrunsrv: Error starting a service: QueryServiceStatus: Win32 error > 1062: The service has not been started. > > The Event Logs say that crontab as well as cron could not be found. > Attached are the requested files. > > Please bear in mind that I am a TOTAL Linux/Unix novice, so > apologies if > it is an obvious problem. > > Any help would be appreciated. > Regards, > Jarrod > -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/