BOINC 6.10.44

Mathematical tools, physics simulators, CAD, CNC, etc.
Message
Author
Wolf Pup
Posts: 637
Joined: Fri 28 Apr 2006, 01:37

BOINC 6.10.44

#1 Post by Wolf Pup »

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
Last edited by Wolf Pup on Sat 17 Apr 2010, 18:47, edited 14 times in total.
[img]http://img230.imageshack.us/img230/8595/ubd6467dp2.png[/img]
[url=http://www.tinyurl.com/54tu74]Visit The Repository[/url] - Helpful and hard-to-find treats for Puppy 3.
[url=http://www.tinyurl.com/c5a68f]Click Here for Puppy Support Chat, + Helpful Links.[/url]

User avatar
Lobster
Official Crustacean
Posts: 15522
Joined: Wed 04 May 2005, 06:06
Location: Paradox Realm
Contact:

#2 Post by Lobster »

Puppy Raspup 8.2Final 8)
Puppy Links Page http://www.smokey01.com/bruceb/puppy.html :D

User avatar
Evil20071
Posts: 489
Joined: Sat 07 Jun 2008, 19:50
Location: Piedmont, SC,.United States
Contact:

#3 Post by Evil20071 »

Cool. Now I can get doing SETI @Home again. :D
[url=http://totalelectronics.us]TotalElectronics.us[/url]

User avatar
ZAPPDOG
Posts: 44
Joined: Fri 16 Feb 2007, 06:19
Location: CALGARY CANADA

#4 Post by ZAPPDOG »

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
[url]http://unclezapaudiozap.freeforums.org/index.php[/url]
[url]http://sadiesdogplace.webs.com/[/url]
[url]http://greenourplanet.webs.com/[/url]

Nipar101
Posts: 10
Joined: Sun 24 Aug 2008, 01:10

Boinc on puppy 4.0

#5 Post by Nipar101 »

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.

Wolf Pup
Posts: 637
Joined: Fri 28 Apr 2006, 01:37

Re: Boinc on puppy 4.0

#6 Post by Wolf Pup »

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. :oops:
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.
[img]http://img230.imageshack.us/img230/8595/ubd6467dp2.png[/img]
[url=http://www.tinyurl.com/54tu74]Visit The Repository[/url] - Helpful and hard-to-find treats for Puppy 3.
[url=http://www.tinyurl.com/c5a68f]Click Here for Puppy Support Chat, + Helpful Links.[/url]

Anti
Posts: 16
Joined: Thu 07 Aug 2008, 23:32

#7 Post by Anti »

I use this sript in init.d to start and stop Boinc.

Code: Select all

#!/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.

Nipar101
Posts: 10
Joined: Sun 24 Aug 2008, 01:10

boinc and puppy 4.0

#8 Post by Nipar101 »

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 :)

Wolf Pup
Posts: 637
Joined: Fri 28 Apr 2006, 01:37

Re: boinc and puppy 4.0

#9 Post by Wolf Pup »

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 :)
[img]http://img230.imageshack.us/img230/8595/ubd6467dp2.png[/img]
[url=http://www.tinyurl.com/54tu74]Visit The Repository[/url] - Helpful and hard-to-find treats for Puppy 3.
[url=http://www.tinyurl.com/c5a68f]Click Here for Puppy Support Chat, + Helpful Links.[/url]

User avatar
ZAPPDOG
Posts: 44
Joined: Fri 16 Feb 2007, 06:19
Location: CALGARY CANADA

#10 Post by ZAPPDOG »

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
[url]http://unclezapaudiozap.freeforums.org/index.php[/url]
[url]http://sadiesdogplace.webs.com/[/url]
[url]http://greenourplanet.webs.com/[/url]

Wolf Pup
Posts: 637
Joined: Fri 28 Apr 2006, 01:37

#11 Post by Wolf Pup »

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. :)
[img]http://img230.imageshack.us/img230/8595/ubd6467dp2.png[/img]
[url=http://www.tinyurl.com/54tu74]Visit The Repository[/url] - Helpful and hard-to-find treats for Puppy 3.
[url=http://www.tinyurl.com/c5a68f]Click Here for Puppy Support Chat, + Helpful Links.[/url]

legendofthor
Posts: 219
Joined: Thu 17 May 2007, 06:52
Location: Queensland Australia

#12 Post by legendofthor »

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

User avatar
ZAPPDOG
Posts: 44
Joined: Fri 16 Feb 2007, 06:19
Location: CALGARY CANADA

#13 Post by ZAPPDOG »

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- ... -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
[url]http://unclezapaudiozap.freeforums.org/index.php[/url]
[url]http://sadiesdogplace.webs.com/[/url]
[url]http://greenourplanet.webs.com/[/url]

User avatar
puppyluvr
Posts: 3470
Joined: Sun 06 Jan 2008, 23:14
Location: Chickasha Oklahoma
Contact:

#14 Post by puppyluvr »

:D 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
I am Lead Dog of the
Puppy Linux Users Group on Facebook
Join us!

Puppy since 2.15CE...

ndujoe1
Posts: 851
Joined: Mon 05 Dec 2005, 01:06

Boinc errors

#15 Post by ndujoe1 »

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.

legendofthor
Posts: 219
Joined: Thu 17 May 2007, 06:52
Location: Queensland Australia

#16 Post by legendofthor »

gday
after much digging I have found out what is causing this..
my apologies to the community...
It not my computer; nor set-up; (ZAPPDOG - I use the Terminal just to check to see if all libraries, etc work); nor the personal file space; nor my dodgy typing thumbs....
apparently its my ISP and a number of the Australian community have experienced this same issues with said ISP - neither is help given by said ISP...
I am changing ISP in a couple of months - so will try BOINC then... <Sigh!>
BAH! too many hours wasted!!!
cheers
Martin

Wolf Pup
Posts: 637
Joined: Fri 28 Apr 2006, 01:37

#17 Post by Wolf Pup »

BOINC updated to 6.4.5

Please Reboot after installing. :)
[img]http://img230.imageshack.us/img230/8595/ubd6467dp2.png[/img]
[url=http://www.tinyurl.com/54tu74]Visit The Repository[/url] - Helpful and hard-to-find treats for Puppy 3.
[url=http://www.tinyurl.com/c5a68f]Click Here for Puppy Support Chat, + Helpful Links.[/url]

User avatar
ZAPPDOG
Posts: 44
Joined: Fri 16 Feb 2007, 06:19
Location: CALGARY CANADA

BOINCIN' PUPPIES

#18 Post by ZAPPDOG »

Hey All
A new thread for Boincin' Puppies.
Drop by and say Howdy and take part in the poll.
http://unclezapaudiozap.phpbb3now.com/v ... 82&start=0

Member of Team Canada
http://teamcanada.freeforums.org/index.php
PUPPY DINGO FULL INSTALL WITH EZPUP
P4 2.6 G
P4 2.0 G
P4 1.8 G
PUPPY RULES
[url]http://unclezapaudiozap.freeforums.org/index.php[/url]
[url]http://sadiesdogplace.webs.com/[/url]
[url]http://greenourplanet.webs.com/[/url]

User avatar
jannetta
Posts: 22
Joined: Sat 02 Aug 2008, 07:10
Location: Durham, England

Re: BOINC 6.4.5

#19 Post by jannetta »

Wolf Pup wrote:Note: Needs around 250mb of free space to work.

boinc-6.4.5.pet
md5sum
I want to download the boinc pet but it is asking for a username and password. Am I doing something stupid or is there something wrong with the link?

magerlab
Posts: 739
Joined: Sun 08 Jul 2007, 20:08

#20 Post by magerlab »

as far as i know
user: puppy
password: linux

Post Reply