OS : Fedora release 8 user : root

crontab -e :output

11 * * * * root /bin/touch /home/arun/Desktop/f1

But this cron job is not creating new file 'f1'.

/var/log/cron :says

Feb 21 09:11:01 localhost CROND[5762]: (root) CMD (root /bin/touch /home/arun/Desktop/f1 )

In command line I executed below command and it creates file f1.

#/bin/touch /home/arun/Desktop/f1
link|improve this question
8? Holy cow, that's old... – Ignacio Vazquez-Abrams Feb 21 at 16:56
feedback

1 Answer

up vote 0 down vote accepted

You are trying to execute the command root /bin/touch /home/arun/Desktop/f1 The executable 'root' obviously does not exist. Try removing 'root' (via crontab -e) and make the crontab entry look like:

 11 * * * * /bin/touch /home/arun/Desktop/f1
link|improve this answer
Yes it Worked .. Thanks a lot 'wildplasser' . I was really stuck in this issue .. Thanks one again – Arun Feb 22 at 4:38
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.