I am trying to make a crontab working in my Linux Mint machine without success.
I open crontab with:
sudo crontab -e
and I edit the file this way:
34 10 * * * root /home/dario/Desktop/back_up/prova_crono.sh
or:
34 10 * * * user /home/dario/Desktop/back_up/prova_crono.sh
but no job has been performing.
The script prova_crono.sh is working if I write:
./prova_crono.sh
so I really am not able to understand where is the problem. Any suggestions?
best regards