| Author |
Message |
Wolf Pup
Joined: 27 Apr 2006 Posts: 637
|
Posted: Mon 18 Aug 2008, 20:47 Post subject:
BOINC 6.10.44 Subject description: Grid Computing |
|
Note: Needs around 250mb of free space to work.
Join Puppy Team: http://www.worldcommunitygrid.org/team/viewTeamInfo.do?teamId=C2BK9RFBQ1
boinc-6.10.44.pet
md5sum
_________________
Visit The Repository - Helpful and hard-to-find treats for Puppy 3.
Click Here for Puppy Support Chat, + Helpful Links.
Last edited by Wolf Pup on Sat 17 Apr 2010, 14:47; edited 14 times in total
|
|
Back to top
|
|
 |
Lobster
Official Crustacean

Joined: 04 May 2005 Posts: 15109 Location: Paradox Realm
|
Posted: Tue 19 Aug 2008, 00:18 Post subject:
|
|
http://boinc.berkeley.edu/
_________________ Puppy WIKI
|
|
Back to top
|
|
 |
Evil20071

Joined: 07 Jun 2008 Posts: 425 Location: Piedmont, SC,.United States
|
Posted: Tue 19 Aug 2008, 23:29 Post subject:
|
|
Cool. Now I can get doing SETI @Home again.
_________________
Click for Detailed PC info

|
|
Back to top
|
|
 |
ZAPPDOG

Joined: 16 Feb 2007 Posts: 44 Location: CALGARY CANADA
|
Posted: Thu 21 Aug 2008, 11:51 Post subject:
|
|
Very cool Wolf Pup !
As a member of Team Canada http://teamcanada.freeforums.org/index.php I have been promoting puppy in their forum and its nice to see a simple alternative to the old .sh file.
It works great.
Many thanks
_________________ PUPPY DINGO FULL INSTALL WITH EZPUP
P4 2.6 G
P4 2.0 G
P4 1.8 G
PUPPY RULES
http://unclezapaudiozap.freeforums.org/index.php
http://sadiesdogplace.webs.com/
http://greenourplanet.webs.com/
|
|
Back to top
|
|
 |
Nipar101
Joined: 23 Aug 2008 Posts: 10
|
Posted: Sat 23 Aug 2008, 21:17 Post subject:
Boinc on puppy 4.0 Subject description: issues with starting automatically and running in background |
|
Bear with me, fairly new to linux, and Puppy Linux is a great welcome surprise.
I need some help though with the following:
Issues that need resolving regarding Puppy 4.00 and Boinc:
(Wolf Pup's boinc-6.2.15.pet )
1. Instructions for launching boinc client at startup via rc.local dont work.
Boot hangs at rc.local and exits to bash prompt.
The text file included in the pet file mentions 2 lines need to be
added and shows only one.
2. After puppy loads to desktop, running boinc manager loads the application and
starts the client. Exit the manager, and the client exits also without saving current
state of task. Upon restarting the computer and relaunching boinc manager, the client
reports "computation error" of the current task and moves on to start a new task.
3. Running "/usr/lib/BOINC/run_client" in rxvt console after the desktop loads starts the
client just fine. When you run boinc manager everthing seems fine, exit boinc manager and
the client remains running. That's good. Close the rxvt console running the client
(window close), exits the client without first saving data and state to harddrive
resulting in "computation error" on next client start.
However, pressing "ctrl+c" exits the client properly.
4. Restarting the computer with boinc client running causes the client to be killed by sigterm without client state and data first being written to harddrive. Again, resulting in task corruption.
Conclusion: a nice way of starting and shutting down boinc client properly is needed.
I am using Puppy 4.0 in the hopes of being able to setup some computers to autorun
BOINC without monitors, keyboards, or mice. The way things work now, I cannot leave them
unattended and any interuption in power would just make a mess of things.
Hope you can help. Thanks in advance.
|
|
Back to top
|
|
 |
Wolf Pup
Joined: 27 Apr 2006 Posts: 637
|
Posted: Sun 24 Aug 2008, 13:55 Post subject:
Re: Boinc on puppy 4.0 Subject description: issues with starting automatically and running in background |
|
| Nipar101 wrote: | 1. Instructions for launching boinc client at startup via rc.local dont work.
Boot hangs at rc.local and exits to bash prompt.
The text file included in the pet file mentions 2 lines need to be
added and shows only one. |
oops, it was only one line, fixed typo.
| Nipar101 wrote: | 2. After puppy loads to desktop, running boinc manager loads the application and
starts the client. Exit the manager, and the client exits also without saving current
state of task. Upon restarting the computer and relaunching boinc manager, the client
reports "computation error" of the current task and moves on to start a new task. |
hmm, make sure you got at least 250mb of free space, or it will give errors.
| Nipar101 wrote: | 3. Running "/usr/lib/BOINC/run_client" in rxvt console after the desktop loads starts the
client just fine. When you run boinc manager everthing seems fine, exit boinc manager and
the client remains running. That's good. Close the rxvt console running the client
(window close), exits the client without first saving data and state to harddrive
resulting in "computation error" on next client start.
However, pressing "ctrl+c" exits the client properly. |
in rc.local the client starts at boot, without typing anything extra.
| Nipar101 wrote: | | 4. Restarting the computer with boinc client running causes the client to be killed by sigterm without client state and data first being written to harddrive. Again, resulting in task corruption. |
Try uninstalling BOINC and deleting the folder /usr/lib/BOINC and reinstall BOINC.
_________________
Visit The Repository - Helpful and hard-to-find treats for Puppy 3.
Click Here for Puppy Support Chat, + Helpful Links.
|
|
Back to top
|
|
 |
Anti
Joined: 07 Aug 2008 Posts: 16
|
Posted: Sun 24 Aug 2008, 16:08 Post subject:
|
|
I use this sript in init.d to start and stop Boinc.
| Code: | #!/bin/sh
# /etc/init.d/boinc
# Start/stop/restart
test -x /usr/BOINC/boinc || exit 0
case "$1" in
start)
echo "Starting BOINC."
cd "/usr/BOINC" && exec ./run_client >>stdoutdae.txt 2>>stderrdae.txt &
;;
stop)
echo "Stopping BOINC."
killall boinc
;;
restart)
killall boinc
sleep 2
cd "/usr/BOINC" && exec ./run_client >>stdoutdae.txt 2>>stderrdae.txt &
;;
*)
echo "Usage: /etc/init.d/boinc {start|stop|restart}"
exit 2
esac
exit 0
|
Copy the script to a new file in /etc/init.d/. Change the paths so that they corresponds to your system and change the file to executable. This way your Boinc install will start automatically at startup.
|
|
Back to top
|
|
 |
Nipar101
Joined: 23 Aug 2008 Posts: 10
|
Posted: Sun 24 Aug 2008, 16:32 Post subject:
boinc and puppy 4.0 Subject description: problem solved |
|
Thanks so much for the info. everything working nice now.
I did make a mistake not putting the "&" after the line for boinc, fixed that.
the script provided looks good, will give a go.
wolfpup, is it only one line from the text file required?
Thanks so much for the quick reponse
|
|
Back to top
|
|
 |
Wolf Pup
Joined: 27 Apr 2006 Posts: 637
|
Posted: Sun 24 Aug 2008, 16:44 Post subject:
Re: boinc and puppy 4.0 Subject description: problem solved |
|
| Nipar101 wrote: | Thanks so much for the info. everything working nice now.
I did make a mistake not putting the "&" after the line for boinc, fixed that.
the script provided looks good, will give a go.
wolfpup, is it only one line from the text file required?
Thanks so much for the quick reponse  |
yup, just one line is needed in rc.local
_________________
Visit The Repository - Helpful and hard-to-find treats for Puppy 3.
Click Here for Puppy Support Chat, + Helpful Links.
|
|
Back to top
|
|
 |
ZAPPDOG

Joined: 16 Feb 2007 Posts: 44 Location: CALGARY CANADA
|
Posted: Sun 14 Sep 2008, 19:53 Post subject:
|
|
Hey Wolfpup
Just to let you all know, that download link is not up right now. I've tried it a few times this weekend. Eric is still working on that server.
I have it here through MSN's Skydrive
boinc-6.2.15.pet
_________________ PUPPY DINGO FULL INSTALL WITH EZPUP
P4 2.6 G
P4 2.0 G
P4 1.8 G
PUPPY RULES
http://unclezapaudiozap.freeforums.org/index.php
http://sadiesdogplace.webs.com/
http://greenourplanet.webs.com/
|
|
Back to top
|
|
 |
Wolf Pup
Joined: 27 Apr 2006 Posts: 637
|
Posted: Sun 14 Sep 2008, 20:03 Post subject:
|
|
| ZAPPDOG wrote: | Hey Wolfpup
Just to let you all know, that download link is not up right now. I've tried it a few times this weekend. Eric is still working on that server.
I have it here through MSN's Skydrive
boinc-6.2.15.pet |
oops, that was using the coral cache mirror which must be down? its now fixed to use caneri's server. Thanks for the alt. link.
_________________
Visit The Repository - Helpful and hard-to-find treats for Puppy 3.
Click Here for Puppy Support Chat, + Helpful Links.
|
|
Back to top
|
|
 |
legendofthor
Joined: 17 May 2007 Posts: 219 Location: Queensland Australia
|
Posted: Fri 26 Sep 2008, 20:56 Post subject:
|
|
gday
just started using boinc today - seti and climateprediction - program appears to work ok except when i ask for a an update; as the projects both have
"scheduler request pending" .... this comes out in the messages
scheduler request failed: error 417
any ideas?
NB: no errors appeared except that one when running in Terminal
|
|
Back to top
|
|
 |
ZAPPDOG

Joined: 16 Feb 2007 Posts: 44 Location: CALGARY CANADA
|
Posted: Wed 01 Oct 2008, 22:58 Post subject:
|
|
| legendofthor wrote: | gday
just started using boinc today - seti and climateprediction - program appears to work ok except when i ask for a an update; as the projects both have
"scheduler request pending" .... this comes out in the messages
scheduler request failed: error 417
any ideas?
NB: no errors appeared except that one when running in Terminal |
howdy
that is an error that i have not seen. I have been running boinc in puppy for a couple of years. If you use the .pet listed above then running it in terminal isn't necessary. It runs from a gui listed in your menu under "Utility". it looks and acts the same as the windows version. And I have never had errors of any kind.
if you aren't using the .pet then check out the second post of mine here
http://teamcanada.freeforums.org/puppy-linux-rules-t203.html
It uses the older style installation.
And should you need any help, please PM me there or here or Uncle Zaps forum in my sig.. I will gladly help.
_________________ PUPPY DINGO FULL INSTALL WITH EZPUP
P4 2.6 G
P4 2.0 G
P4 1.8 G
PUPPY RULES
http://unclezapaudiozap.freeforums.org/index.php
http://sadiesdogplace.webs.com/
http://greenourplanet.webs.com/
|
|
Back to top
|
|
 |
puppyluvr

Joined: 06 Jan 2008 Posts: 3052 Location: Chickasha Oklahoma
|
Posted: Wed 01 Oct 2008, 23:16 Post subject:
|
|
Wolf Pup,
Thanks....Been a seti@home member since 2002, nice to run it in Puppy. Works great!!!
.. Jay..
SWEET!!!!!!!!
_________________ "Close the "Windows", and open your eyes, to a whole new world"
http://puppylinuxstuff.meownplanet.net/puppyluvr/
http://theplpd.webs.com/
Nothing but Puppy since 2.15CE...
|
|
Back to top
|
|
 |
ndujoe1
Joined: 04 Dec 2005 Posts: 616
|
Posted: Fri 03 Oct 2008, 14:39 Post subject:
Boinc errors |
|
When I had errors, Wolf_pup suggested that I increase the Personal file size. That did the trick and Bionic has been working very well since then.
|
|
Back to top
|
|
 |
|