↧
Answer by MarcoZen for When does `cron.daily` run?
OpenSuse 42.x Update :/etc/crontab shows a file /usr/lib/cron/run-crons that is supposed to run every 15 minutes./usr/lib/cron/run-crons in turn ( has may lines of code ) which is looking for a...
View ArticleAnswer by paddy for When does `cron.daily` run?
I use Slackware (14.0), and did not have /etc/crontab. Also, anacron is not part of the distribution.The solution on my system was as simple as running crontab -l as root:root@flea:~# crontab -l# If...
View ArticleAnswer by Spechal for When does `cron.daily` run?
For CentOS 6, you need to grep /etc/anacrontab and the answer varies if the server/laptop/dekstop/etc has been turned off or not.cat /etc/anacrontab # /etc/anacrontab: configuration file for anacron#...
View ArticleAnswer by Daniel Santos for When does `cron.daily` run?
CentOS6.x/RedHat6.x installs by default the package cronie-anacron. You have to:yum install cronie-noanacronyum erase cronie-anacronThen you now have /etc/cron.d/dailyjobs to configure the best...
View ArticleAnswer by darklion for When does `cron.daily` run?
For SuSE systems (specifically SLES 11.1 and openSuSE 10.3) the daily run time of the /etc/cron.daily scripts is controlled by the value of the DAILY_TIME variable set in the /etc/sysconfig/cron...
View ArticleAnswer by Richard Holloway for When does `cron.daily` run?
For the distributions you mention:On CentOS 5.4 (Should be same for RHEL5)grep run-parts /etc/crontab01 * * * * root run-parts /etc/cron.hourly02 4 * * * root run-parts /etc/cron.daily22 4 * * 0 root...
View ArticleAnswer by Dennis Williamson for When does `cron.daily` run?
From /etc/anacrontab on my Ubuntu 9.10 system:1 5 cron.daily nice run-parts --report /etc/cron.daily7 10 cron.weekly nice run-parts --report /etc/cron.weekly@monthly 15 cron.monthly nice run-parts...
View ArticleAnswer by jlliagre for When does `cron.daily` run?
There is no such facility as far as Solaris is concerned. Just use regular crontab entries for daily tasks.
View ArticleAnswer by leonbloy for When does `cron.daily` run?
From the man page: Cron also searches for /etc/anacrontab/etc/anacrontab in my system (Fedora 12) :1 5 cron.daily nice run-parts /etc/cron.daily7 25 cron.weekly nice run-parts /etc/cron.weekly@monthly...
View ArticleAnswer by Sven for When does `cron.daily` run?
On Ubuntu, you'll find a file /etc/crontab, from where this is configured. I guess it is something similar on RH and Centos.
View ArticleWhen does `cron.daily` run?
When do entries in cron.daily (and .weekly and .hourly) run, and is it configurable?I haven't found a definitive answer to this, and am hoping there is one.I'm running RHEL5 and CentOS 4, but for other...
View Article
More Pages to Explore .....