delorie.com/archives/browse.cgi | search |
Mailing-List: | contact cygwin-help AT cygwin DOT com; run by ezmlm |
List-Subscribe: | <mailto:cygwin-subscribe AT cygwin DOT com> |
List-Archive: | <http://sources.redhat.com/ml/cygwin/> |
List-Post: | <mailto:cygwin AT cygwin DOT com> |
List-Help: | <mailto:cygwin-help AT cygwin DOT com>, <http://sources.redhat.com/ml/#faqs> |
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 |
Date: | Thu, 26 Jun 2003 17:11:54 -0400 |
Message-ID: | <BADF3C947A1BD54FBA75C70C241B0B9E763464@mail.co.idirect.net> |
X-MS-Has-Attach: | |
X-MS-TNEF-Correlator: | |
From: | "Harig, Mark" <maharig AT idirect DOT net> |
To: | "Jarrod Hermer" <jarrod AT mybeat DOT net>, <cygwin AT cygwin DOT com> |
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/
webmaster | delorie software privacy |
Copyright © 2019 by DJ Delorie | Updated Jul 2019 |