Page 1 of 1

#1 How to start boinccmd in command line

Posted: Sun Jan 27, 2019 7:27 pm
by Hal Bregg
Hi guys,

Would this command

Code: Select all

/etc/init.d/boinc-client status
be appropriate for starting boinccmd after using command --quit

#2 Re: How to start boinccmd in command line

Posted: Sun Jan 27, 2019 8:36 pm
by davidbam

Code: Select all

sudo service boinc-client start
... is what I use

#3 Re: How to start boinccmd in command line

Posted: Sun Jan 27, 2019 10:02 pm
by scole of TSBT
Boinccmd is a command line tool for controlling the Boinc client once it is running. You can use it to attach/detach projects, update projects and change other settings.

To start and stop the default client, I do the same as you...

Code: Select all

sudo /etc/init.d/boinc-client start
sudo /etc/init.d/boinc-client stop
sudo /etc/init.d/boinc-client restart
The status request does work but I never use it.

Code: Select all

sudo /etc/init.d/boinc-client status
This is how I start an additional client with files in the /var/lib/boinc1 folder in addition to the /var/lib/boinc-client folder...

Code: Select all

cd /var/lib/boinc1
/usr/bin/boinc --allow_multiple_clients --gui_rpc_port 31421 --dir /var/lib/boinc1  > /var/lib/boinc1/stdoutdae.txt

#4 Re: How to start boinccmd in command line

Posted: Sun Jan 27, 2019 11:15 pm
by Bryan
Or for the main client:

Code: Select all

sudo service boinc-client stop
sudo service boinc-client start

#5 Re: How to start boinccmd in command line

Posted: Mon Jan 28, 2019 9:30 pm
by Hal Bregg
Does above apply to headless installation of Ubuntu/Debian?

#6 Re: How to start boinccmd in command line

Posted: Mon Jan 28, 2019 9:48 pm
by scole of TSBT
Hal Bregg wrote: Mon Jan 28, 2019 9:30 pm Does above apply to headless installation of Ubuntu/Debian?
head, headless, gui desktop or server. works for all.