On Tuesday 23 December 2003 3:19 pm, George Gambill wrote: > =09# run-parts > =0901 * * * root run-parts /etc/cron.hourly > =0902 4 * * root run-parts /etc/cron.daily > =0903 4 * * root run-parts /etc/cron.weekly > =0904 4 1 * root run-parts /etc/cron.monthly > > These seem tobe running at 1,2,3,4 in the morning (as I read the book > "Running Linux" - O'Reilly). > Not quite. They are running at 1, 2, 3, 4 minutes after the hour. Cron=20 timing works off five columns. Left to right, those columns are Minute - Hour - Day - Month - Weekday The value specifies in each columna allows for timing. Googling reveals http://www.nerc-online.com/support/www/crontab.html for more information. So hourly runs exactly when it says it will, hourly. Specifically, at *:= 01 on=20 the clock. In your list Daily check the minutes (:02) and the hour (4:) = and=20 when they match (4:02) it runs, and since 04:02 only happens once a day, = it=20 works. =20 =09Most cron jobs are set to run early in teh hour, so if it was just bef= ore=20 noon, and your clock is 10 minutes fast, I would assume it is a cron job.= =20 (11:55 + ~10). --=20 Kyle Faber Account Manager EMR Internet kyle@emr.net 623-581-0842 voice 623-582-9499 fax UNIX is a registered trademark of The Open Group in the United States and= =20 other countries.