Index  | Recent Threads  | Unanswered Threads  | Who's Active  | Guidelines  | Search
 

Quick Go »
No member browsing this thread
Thread Status: Active
Total posts in this thread: 35
Posts: 35   Pages: 4   [ Previous Page | 1 2 3 4 | Next Page ]
[ Jump to Last Post ]
Post new Thread
Author
Previous Thread This topic has been viewed 3432 times and has 34 replies Next Thread
Former Member
Cruncher
Joined: May 22, 2018
Post Count: 0
Status: Offline
Reply to this Post  Reply with Quote 
confused Re: Maybe I should just pack it in ... It is beyond my comprehension

I have two questions ...

What is the 'command line' to stop Boinc in Linux? ... or do I just KILL it?

What is the 'command line' to start Boinc?

I don't do scrips


There is no "help" regarding Boinc Linux that I can find ... only Windose or Mac.

mucks
[Dec 4, 2005 8:36:48 PM]   Link   Report threatening or abusive post: please login first  Go to top 
Former Member
Cruncher
Joined: May 22, 2018
Post Count: 0
Status: Offline
Reply to this Post  Reply with Quote 
Re: Maybe I should just pack it in ... It is beyond my comprehension

There is a little on the website about Linux. Look at http://www.worldcommunitygrid.org/help/viewTopic.do?shortName=linagent
[Dec 5, 2005 3:48:29 AM]   Link   Report threatening or abusive post: please login first  Go to top 
Former Member
Cruncher
Joined: May 22, 2018
Post Count: 0
Status: Offline
Reply to this Post  Reply with Quote 
applause Re: Maybe I should just pack it in ... It is beyond my comprehension

Thank you ... smile

Can you tell me what the 'proper' procedure is for using run_manager using the command line in a shell?

Do you first stop Boinc ?
[Dec 5, 2005 9:39:43 AM]   Link   Report threatening or abusive post: please login first  Go to top 
Former Member
Cruncher
Joined: May 22, 2018
Post Count: 0
Status: Offline
Reply to this Post  Reply with Quote 
Re: Maybe I should just pack it in ... It is beyond my comprehension


What is the 'command line' to stop Boinc in Linux? ... or do I just KILL it?

killall boinc


What is the 'command line' to start Boinc?


nohup ./boinc >& /dev/null &


If you stop boinc before running 'run_manager' the manger program can not connect to boinc - nothing to manage. So always start boinc before starting run_manager.
[Dec 6, 2005 2:01:49 PM]   Link   Report threatening or abusive post: please login first  Go to top 
Former Member
Cruncher
Joined: May 22, 2018
Post Count: 0
Status: Offline
Reply to this Post  Reply with Quote 
rose Re: thank you for any help ...


What is the 'command line' to stop Boinc in Linux? ... or do I just KILL it?

killall boinc

What is the 'command line' to start Boinc?

nohup ./boinc >& /dev/null &
If you stop boinc before running 'run_manager' the manger program can not connect to boinc - nothing to manage. So always start boinc before starting run_manager.



Thank you prause,

Could you tell me how to properly start run_manager ... all my efforts just lock my system up. sad
[Dec 6, 2005 3:28:59 PM]   Link   Report threatening or abusive post: please login first  Go to top 
knreed
Former World Community Grid Tech
Joined: Nov 8, 2004
Post Count: 4504
Status: Offline
Project Badges:
Reply to this Post  Reply with Quote 
Re: Maybe I should just pack it in ... It is beyond my comprehension

Ok let me take a stab at this. I'm going to repeat some information and probably also answer the question at a lower level becuase others might have the same questions as you.

There are 3 major tools installed when download and install BOINC.

The BOINC Core Client
The first is the BOINC core client (which is the only thing we talk about on the download and install page). Lots of information about it is available at: http://boinc.berkeley.edu/client_unix.php

The BOINC Manager
The second is the BOINC Manager. This is a GUI tool that can make administration of the BOINC core client easier. It also allows you to check the status of your workunits. Lots of information about it is available at: http://boinc.berkeley.edu/manager.php

The BOINC Command Line Tool
The third is the BOINC command line tool. This is a non-gui tool that allows you to check the status of the core client and do most management tasks. More information about it can be found here: http://boinc.berkeley.edu/boinc_cmd.php

Ok - I think you have figured most of the above out but I thought I would point you to the links in case you had more questions about them.

Starting BOINC
Next - you asked how do you start the client and keep it running after you close your shell. As prause said - you need to run the following command:

> nohup ./boinc >& /dev/null &

nohup makes sure that the process is not killed by the operating system after you close your shell.

The & means run the process in the background. This lets you continue to use your shell after starting the command.

How do I know if BOINC is running?
Next - how do you check to see if BOINC is running. What you actually want to check is if the science application running. In this case it is rosetta. One easy way to do it is to run the command

> top

In this display you should see a process named 'rosetta_4.21_i686-pc-linux-gnu' using a large portion of the cpu time (you will see multiple processes if you have more then one processor). If you see this then you know that BOINC is successfully running the World Community Grid Human Protoeme Folding Project.


Stopping BOINC
Finally - how do you stop BOINC? The easiest way that I have found is to run the command:

> pkill boinc

And it exits shortly afterwords.
[Dec 6, 2005 3:33:33 PM]   Link   Report threatening or abusive post: please login first  Go to top 
Former Member
Cruncher
Joined: May 22, 2018
Post Count: 0
Status: Offline
Reply to this Post  Reply with Quote 
Re: Maybe I should just pack it in ... It is beyond my comprehension

I thank you for trying to help ... yes I have read everything there is to read. rolling eyes

mucks@linux:~/BOINC/BOINC> ./boinc -version
5.2.13 i686-pc-linux-gnu
mucks@linux:~/BOINC/BOINC> ./boinc -show_projects
2005-12-06 21:47:27 [---] Another instance of BOINC is running
mucks@linux:~/BOINC/BOINC>


confused

I use KSysGuard instead of "top" ... smile


The BOINC manager program is available for Windows, Mac OS X and Linux. It controls the use of your computer's disk, network, and processor resources, and is normally started at boot time.
On Windows, the BOINC Manager is ....
On Mac OS X, it is represented ....


And on Linux ... confused oops, no Linux explanation.

Sorry ... but this is why I have resorted to asking one or two questions only.
[Dec 6, 2005 10:05:07 PM]   Link   Report threatening or abusive post: please login first  Go to top 
knreed
Former World Community Grid Tech
Joined: Nov 8, 2004
Post Count: 4504
Status: Offline
Project Badges:
Reply to this Post  Reply with Quote 
Re: Maybe I should just pack it in ... It is beyond my comprehension

cd into the directory where you have installed BOINC

then run

./boincmgr

The 'run_manager' script that people have mentioned above simply does these steps for you (just take a look at the file).

Make sure that BOINC is running first (via techniques discussed above)

Obviously, since the manager is a GUI you need to be in an environment capable of displaying it (i.e. not logged in remotely).
[Dec 6, 2005 10:13:34 PM]   Link   Report threatening or abusive post: please login first  Go to top 
Former Member
Cruncher
Joined: May 22, 2018
Post Count: 0
Status: Offline
Reply to this Post  Reply with Quote 
Re: Maybe I should just pack it in ... It is beyond my comprehension

Any Linux user want to jump in here and assist my pathetic brain understand how you ... Start Boinc "run_manager" from the shell.

To date I have had 3 attempts;
attempt 1 wanted a password ... this did not exist in "gui_rpc_auth_cfg" ... nope, the file WAS empty
attempt 2 after re-setting up the latest version Boinc ... my system froze
attempt 3 one restart later ... loads of error 111s ... system froze

See previous post for explanation of error 111

Sorry, but I'm just trying to get my poor head around this ... sad
[Dec 6, 2005 10:18:45 PM]   Link   Report threatening or abusive post: please login first  Go to top 
Former Member
Cruncher
Joined: May 22, 2018
Post Count: 0
Status: Offline
Reply to this Post  Reply with Quote 
Re: Maybe I should just pack it in ... It is beyond my comprehension

cd into the directory where you have installed BOINC

then run

./boincmgr

The 'run_manager' script that people have mentioned above simply does these steps for you (just take a look at the file).

Make sure that BOINC is running first (via techniques discussed above)

Obviously, since the manager is a GUI you need to be in an environment capable of displaying it (i.e. not logged in remotely).


Sorry we posted at the same time ... I'm a slow typing.

yes and a slow learner. blushing
[Dec 6, 2005 10:21:00 PM]   Link   Report threatening or abusive post: please login first  Go to top 
Posts: 35   Pages: 4   [ Previous Page | 1 2 3 4 | Next Page ]
[ Jump to Last Post ]
Post new Thread