View unanswered posts    View active topics

All times are UTC - 6 hours





Post new topic Reply to topic  [ 8 posts ] 
Print view Previous topic   Next topic  
Author Message
Search for:
PostPosted: Tue Mar 20, 2007 6:32 pm 
Offline
Joined: Thu Aug 03, 2006 6:15 am
Posts: 43
Location: College Station, TX
http://knoppmythwiki.org/index.php?page=BOINCHowTo

_________________
Knoppmyth R5F27 on a Dell Dimension 8100
768 MB ram
GeForce 5200
Hauppauge WinTV-PVR-150
Lots of hdds


Top
 Profile  
 
PostPosted: Thu Mar 29, 2007 8:32 pm 
Offline
Joined: Fri Jul 29, 2005 1:22 am
Posts: 232
Location: SF East Bay, CA
jessebs wrote:


Nice!

Once you've got it setup and going in the /etc/init.d, Is there an elegant way to stop and restart the daemon? stuff that I read up on update-rc.d suggests that there should be a start and stop section in the script.

http://www.debian-administration.org/articles/28

_________________
// Brian - Hardware:
ASUS P5P800 - P4 3Ghz, 500 GB PATA HD
ASUS P5K-V - P4 Core2 Duo, 500 GB SATA HD
Hauppauge PVR-350, IR Blaster, Comcast Digital Cable
http://tech.groups.yahoo.com/group/KnoppMyth/
KnoppMyth R5F27 >> R5.5


Top
 Profile  
 
 Post subject:
PostPosted: Fri Mar 30, 2007 8:59 am 
Offline
Joined: Thu Aug 03, 2006 6:15 am
Posts: 43
Location: College Station, TX
as far as i can tell, boinc has no command to stop the daemon. What you could do is, in the init script run something like 'killall boinc'.

a more detailed init file http://www.spy-hill.com/~myers/help/boinc/init.d-boinc might be able to give some guidance under the 'stop' section.

this script was written for RedHat so it might not work completely.

_________________
Knoppmyth R5F27 on a Dell Dimension 8100
768 MB ram
GeForce 5200
Hauppauge WinTV-PVR-150
Lots of hdds


Top
 Profile  
 
 Post subject:
PostPosted: Fri Mar 30, 2007 9:31 am 
Offline
Joined: Thu Aug 03, 2006 6:15 am
Posts: 43
Location: College Station, TX
actually, I just made a better one. Check the wiki in a few minutes.

_________________
Knoppmyth R5F27 on a Dell Dimension 8100
768 MB ram
GeForce 5200
Hauppauge WinTV-PVR-150
Lots of hdds


Top
 Profile  
 
 Post subject:
PostPosted: Fri Mar 30, 2007 3:15 pm 
Offline
Joined: Fri Jul 29, 2005 1:22 am
Posts: 232
Location: SF East Bay, CA
jessebs wrote:
actually, I just made a better one. Check the wiki in a few minutes.


Very nice! I'll set it up this evening!

I've been running "rosetta @ home" for the last few days.. Seems to be running OK without hoggin' the resources. 8)

_________________
// Brian - Hardware:
ASUS P5P800 - P4 3Ghz, 500 GB PATA HD
ASUS P5K-V - P4 Core2 Duo, 500 GB SATA HD
Hauppauge PVR-350, IR Blaster, Comcast Digital Cable
http://tech.groups.yahoo.com/group/KnoppMyth/
KnoppMyth R5F27 >> R5.5


Top
 Profile  
 
 Post subject:
PostPosted: Sun Apr 01, 2007 5:06 pm 
Offline
Joined: Fri Jul 29, 2005 1:22 am
Posts: 232
Location: SF East Bay, CA
jessebs wrote:
actually, I just made a better one. Check the wiki in a few minutes.


BluesBrian wrote:
Very nice! I'll set it up this evening!


OK, works great.. I worked up an alternate script for the mythtv user to operate... and added a "show" option to view the project setups (need to "stop" before "show".) This script will make it easier to turn on & off the BOINC processing.

Code:
#!/bin/sh

BOINCDIR=/home/mythtv/BOINC
BOINCEXE=/home/mythtv/BOINC/run_client
BOINCNAME=boinc
BOINCPARAM=--daemon
BOINCSHOW=--show_projects
USERNAME=mythtv

case "$1" in
  start)
    echo "Starting Boinc"
    $BOINCEXE $BOINCPARAM
    ;;

  stop)
    echo "Stopping Boinc"
    killall $BOINCNAME
    rm -f $BOINCDIR/lockfile
    ;;
  show)
    echo "Show Boinc Projects"
    $BOINCEXE $BOINCSHOW
    ;;

esac
exit



I'm now running Rosetta, Einstein, and AstroPulse on the box. (The BOINC manager cycles between the active projects.)

_________________
// Brian - Hardware:
ASUS P5P800 - P4 3Ghz, 500 GB PATA HD
ASUS P5K-V - P4 Core2 Duo, 500 GB SATA HD
Hauppauge PVR-350, IR Blaster, Comcast Digital Cable
http://tech.groups.yahoo.com/group/KnoppMyth/
KnoppMyth R5F27 >> R5.5


Top
 Profile  
 
 Post subject:
PostPosted: Sat Jun 16, 2007 7:41 am 
Offline
Joined: Fri Jul 29, 2005 1:22 am
Posts: 232
Location: SF East Bay, CA
has anyone tried to upgrade to boinc_5.8.16_i686-pc-linux-gnu.sh?

predictor@home has some new work units, and requires an newer boinc client.

// Brian

Image

_________________
// Brian - Hardware:
ASUS P5P800 - P4 3Ghz, 500 GB PATA HD
ASUS P5K-V - P4 Core2 Duo, 500 GB SATA HD
Hauppauge PVR-350, IR Blaster, Comcast Digital Cable
http://tech.groups.yahoo.com/group/KnoppMyth/
KnoppMyth R5F27 >> R5.5


Top
 Profile  
 
 Post subject:
PostPosted: Sat Jun 16, 2007 8:22 am 
Offline
Joined: Fri Jul 29, 2005 1:22 am
Posts: 232
Location: SF East Bay, CA
Here's a summary of my BOINC Projects on my knoppmyth box:

1. name: rosetta@home
master URL: http://boinc.bakerlab.org/rosetta/
credits: 1,068.65

2. name: Einstein@Home
master URL: http://einstein.phys.uwm.edu/
credits: 1,199.40

3. name: SETI@home Beta Test
master URL: http://setiweb.ssl.berkeley.edu/beta/
credits: 271.15

4. name: Leiden Classical
master URL: http://boinc.gorlaeus.net/
credits: 0.00 (I have not been able to get work units to work.. ahhh, needs some research time!)

5. name: Pirates@Home
master URL: http://pirates.spy-hill.net/
credits: 0.00 (argh! :twisted: Client errors, they have fixed some lib dependancy problems, so I'm waiting for more work units. one of my other Linux boxes has 0.12 credits!)

6. name: SZTAKI Desktop Grid
master URL: http://szdg.lpds.sztaki.hu/szdg/
credits: 0.00 (have not received work units, currently, set to "no more work")

7. name: SETI@home
master URL: http://setiathome.berkeley.edu/
credits: 288.37 (plus some pending)

8. name: boincsimap
master URL: http://boinc.bio.wzw.tum.de/boincsimap/
credits: 0.00 (no work units have been available)

9. name: QMC@HOME
master URL: http://qah.uni-muenster.de/
credits: 4,516.10

10 name: ABC@home
master URL: http://abcathome.com/
credits: 5,709.94

11. name: orbit@home
master URL: http://orbit.psi.edu/
credits: 0.0 (no work units have been available, hopefully soon!)

12. name: Riesel Sieve Project
master URL: http://boinc.rieselsieve.com/
credits: 81.00

13. name: Predictor@home
master URL: http://predictor.scripps.edu/
credits: 0.0 (Requires core BOINC client 5.8 )

My Team: http://tech.groups.yahoo.com/group/projectbluebookseti/

_________________
// Brian - Hardware:
ASUS P5P800 - P4 3Ghz, 500 GB PATA HD
ASUS P5K-V - P4 Core2 Duo, 500 GB SATA HD
Hauppauge PVR-350, IR Blaster, Comcast Digital Cable
http://tech.groups.yahoo.com/group/KnoppMyth/
KnoppMyth R5F27 >> R5.5


Top
 Profile  
 

Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 8 posts ] 


All times are UTC - 6 hours




Who is online

Users browsing this forum: No registered users and 13 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Jump to:  
cron
Powered by phpBB® Forum Software © phpBB Group

Theme Created By ceyhansuyu