I want to setup a cronjob in Linux to tell Boinc project X to update without me manually clicking the update tab all the time, I know how to do the crontab -e and how to set the timing ie 1 * * * * to make it do it every 60 seconds but don't know how to format the Boinc command to do it. I know in Windows you make a small batch file like this:
cd "c:\program files\boinc"
boinccmd --project https://universeathome.pl/universe/
update
and then you go into Windows to tell it how often to run it, I used this during the latest Boinc Pentahalon to keep my Universe tasks topped up, as much as possible, when they were having connection issues
Thank you very much for any tips and tricks to make this work for me
mikey
Copyright © 2024 Einstein@Home. All rights reserved.
mikey wrote:I want to setup
)
Don't bother with cron. Much too complicated for what you need to do.
Just go to wherever you have boinccmd installed and open a Terminal and input this:
watch -n 60 ./boinccmd --project http://einstein.phys.uwm.edu/ update
Then minimize the Terminal to the dock and let it run.
Keith Myers wrote: mikey
)
Thank you I will try that today!!