Posts by äxl

21) Message boards : Questions and problems : [Question] Make BOINC use only 1 of 2 GPUs (Message 54726)
Posted 3 Jul 2014 by Profile äxl
Post:
TThrottle is able to control two GPUs independently.
You can also set it to "Throttle only" if you're not interested in temperature adaptation.
http://www.efmer.eu/boinc/tthrottle_manual.html
22) Message boards : Questions and problems : Ideal device for BOINC? (Message 54719)
Posted 3 Jul 2014 by Profile äxl
Post:
Pentuim 4's are slow, and very inefficient compared to modern desktop CPUs.

Claggy


It's more inefficient to put a working device out of use.

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
EDIT: Sam, maybe you should ask your favorite project's leader what s/he wishes you to use/buy.^^
23) Message boards : Questions and problems : Ideal device for BOINC? (Message 54715)
Posted 3 Jul 2014 by Profile äxl
Post:
Is that on full load?
I'm guessing 30 watts for the N450 (Is that an Asus EEE?).

Still no reason to buy a new device - since most energy is "used" in production.
Sam, why not just run BOINC on your current device? You can throttle/autosuspend work as you like. (If you insist on a new device I would go with an ARM quad-core with Android.^^)
24) Message boards : Questions and problems : getting many "validation inconclusive" (Message 54709)
Posted 2 Jul 2014 by Profile äxl
Post:
... but I reject them manually.

Maybe that's why they're rejecting you. ;)

Checks temperature every minute (also GPU):
http://efmer.eu/boinc/
25) Message boards : Questions and problems : Ideal device for BOINC? (Message 54705)
Posted 2 Jul 2014 by Profile äxl
Post:
Good to know, Claggy.
Have you got any informations about average power consumption?
26) Message boards : Questions and problems : Problem: BOINC Manager Connecting to localhost (Message 54546)
Posted 22 Jun 2014 by Profile äxl
Post:
Have you tried playing around with permissions? Maybe only give boinc access or extend rights.

I also have a symlink of gui_rpc_auth.cfg in my home directory.
27) Message boards : Questions and problems : How much CPU % do you allow your BOINC app to use? (Message 54531)
Posted 21 Jun 2014 by Profile äxl
Post:
Have you tried all BOINC add-ons? Maybe ThreadMaster and BES do change the usage ...

Maybe you could work on my bash script and make it a batch file ...?
http://boinc.berkeley.edu/dev/forum_thread.php?id=9355
Though you'd need a sensor command-line tool but everything else should be feasible.
28) Message boards : Questions and problems : Linux BOINC temperature script (Message 54530)
Posted 21 Jun 2014 by Profile äxl
Post:
Hi all,

I wrote a simple bash script to change the CPU usage according to its temperature.
I wrote this for my AMD Athlon 64 X2 (R) [2006] on Debian Wheezy (should also work on Ubuntu ...?). You'll need the packages lm-sensors and sed. Note that you have to start this as root or with sudo rights (to change the BOINC owned preferences file).

Suggestions and changes are welcome. I will update this post.

Use your favorite internet search enginge for your CPU's suggested temperature and set TARGTEMP.

#!/bin/bash
#Script to adapt BOINC's global CPU usage to CPU temperature
#Use your favorite internet search enginge
#for your CPU's suggested temperature
#Written for AMD Athlon 64 X2 (R) [2006]
#
#Released into the Public Domain or CC0, your choice.
#Thanks to grymoire.com, tldp.org, stackoverflow.com
#and all of the Open Source Community.

#Set target temperature of your CPU in Degree Celsius here:
TARGTEMP=50

#Set how often usage is changed and changes are put on screen in minutes
CHANGEPAUSE=1
OUTPUTPAUSE=15

#Simple check for dependencies
DEPENDENCIES="sensors sed"
for i in $DEPENDENCIES; do
if ! command -v "$i" >/dev/null
then echo "Please check if you have the package necessary for \033[1m$i\033[0m installed." && exit 1; fi; done

#Change to BOINC_DIR and create temporary folder for backup
BOINCDAT=$(grep BOINC_DIR /etc/default/boinc-client | grep -v "\#" | cut -d"\"" -f2)
cd $BOINCDAT
mkdir -p tmp

while [ -e "lockfile" ]; do
#Grab current CPU usage settings
CURRCPU=$(grep "<cpu_usage_limit>" global_prefs_override.xml | cut -d">" -f2 | cut -d"." -f1)
#Grab current temperature
CURRTEMP=$(sensors | grep "Core1 Temp" | head -1 | cut -d"+" -f2 | cut -d"." -f1)
#In-/Decrease usage by two percent
if [ "$CURRTEMP" -gt "$TARGTEMP" ]; then
ADVCPU=$(( $CURRCPU-2 )); else
ADVCPU=$(( $CURRCPU+2 )); fi

#Calculates pause for output on screen and also to log:
REMAINDER=$(( $(date +"%-M") % $OUTPUTPAUSE ))
if [ "$REMAINDER" = 0 ]; then
echo $(date +"%F %H:%M") Advised CPU is "$ADVCPU" %.\ | tee -a boinctemp.log
fi

#Stream EDit line with cpu_usage_limit by substituting CURRCPU with ADVCPU
sed '/cpu_usage_limit/ s/'$CURRCPU'/'$ADVCPU'/' <global_prefs_override.xml >tmp/global_prefs_override.xml
#Check temporary backup and copy to original (errors go to output AND into boinctemp.log)
if grep "<cpu_usage_limit>"$ADVCPU"" tmp/global_prefs_override.xml 2>&1>/dev/null | tee -a boinctemp.log; then
	cp tmp/global_prefs_override.xml global_prefs_override.xml
	else echo "Can't edit preferences file. Check your disk."
fi
boinccmd --read_global_prefs_override
#fi
sleep "$CHANGEPAUSE"m
done


Apologies to other flavour users but this should be easily adaptable.
29) Message boards : Questions and problems : How much CPU % do you allow your BOINC app to use? (Message 54425)
Posted 11 Jun 2014 by Profile äxl
Post:
Hi, since this thread seems already taken over (;) I have a small question about setting the CPU usage. Is it alright to change it very often or is it better to stop tasks?

I'm on Linux and have written a script which changes the percentage according to temperature. TThrottle for Windows stops tasks so I'm not sure what's the correct way.

Regards
30) Message boards : Questions and problems : SSD - Moving Data Directory on Linux ... (Message 40110)
Posted 10 Sep 2011 by Profile äxl
Post:
I couldn't complete it successfully with a version installed from the packet manager.
I could only get it to work with a manual install:

sh ./boinc_...-pc-linux-gnu.sh
in an own partition and an edit in /etc/default/boinc-client.

(German guide)
31) Message boards : Questions and problems : SSD - Moving Data Directory on Linux ... (Message 40038)
Posted 6 Sep 2011 by Profile äxl
Post:
Regarding: Moving Data_Dir on Linux Ubuntu 10.04 v BOINC 6.10.58
http://boinc.berkeley.edu/dev/forum_thread.php?id=6144

I'm on 10.04 and 6.12.33 and I'm speaking of /var/lib/boinc-client of course.
With all the traffic BOINC and the applications are producing I thought setting checkpoints should do the trick. But it does nothing. So I thought it would be common sense to move it to an HDD. Since I found so little information I don't know if it really is important. I wanted to do it anyway but I have my problems with it:

The hints from Sekerob didn't work at all for me. Changes to
    /etc/boinc-client/cc_config.xml (<data_dir></data_dir> in options)
    /etc/default/boinc-client (BOINC_DIR="")
    /etc/init.d/boinc-client (BOINC_DIR=)


did nothing but a broken connection with boinc-manager. Reinstalling BOINC it still saved the data in /var/lib/boinc-client ...

To whynot's guide:
If I'd known that a simple 'cp -a' is mightier than a 'rsync -whtsname' I would have saved me some time ...
Since there is already a '--bind' I thought it wouldn't hurt to mount the directory in another directory.

mount --bind /media/Harddisk/boinc-client /var/lib/boinc-client


After some problems I got BOINC connected to its client, but SETI now says "Download failed" while Rosetta gives me a "Computation error".
My LTD is -4.11 possibly cause I'm producing so much junk ...
32) Message boards : Questions and problems : Progress not updated via tray icon (Message 33118)
Posted 29 May 2010 by Profile äxl
Post:
Bummer.
A slide/pop-up with update and information would also be nice.
33) Message boards : Questions and problems : Progress not updated via tray icon (Message 33107)
Posted 28 May 2010 by Profile äxl
Post:
BOINC Manager = 6.10.56
Sys = Windows 6
Since version .17, the progress percentage is not being updated via the tray icon. It only shows the % as of the last time the app window was shown.
34) Message boards : Questions and problems : BOINC 6.10.43/6.10.44 no longer released for public (Message 32810)
Posted 15 May 2010 by Profile äxl
Post:
Okay, thought so. Didn't know it was not possible to change the thread title. :-)

But not really understandable from first post. Well, that's me being german... :-D
35) Message boards : Questions and problems : BOINC 6.10.43/6.10.44 no longer released for public (Message 32808)
Posted 15 May 2010 by Profile äxl
Post:
I don't quite get that. Is the thread title wrong?
At http://boinc.berkeley.edu/download_all.php version 6.10.18 is still the "recommended version" aka stable version.
Will this change? Or on which site is .43/.44 declared stable and downloadable?
36) Message boards : Questions and problems : One processor for one project (Message 32800)
Posted 14 May 2010 by Profile äxl
Post:
With the aforementioned value global_prefs_override.xml says:
<cpu_scheduling_period_minutes>99999999999999999000000000000000000000000000000000000000000000000000000000000000000000000.000000</cpu_scheduling_period_minutes>

Too many 9's gives:
<cpu_scheduling_period_minutes>1.#INF00</cpu_scheduling_period_minutes>
...and sets the value in the GUI to 60.00 minutes.

I've set it now to 500. But I'm pessimistic that this will help.
37) Message boards : Questions and problems : One processor for one project (Message 32790)
Posted 14 May 2010 by Profile äxl
Post:
There is a way. Set the "switch between applications" value to something that's higher than the nominal run-time of any task. In seconds, of course.


I have it set to 99999999999999999000000000000000000000000000000000000000000000000000000000000000000000000.00 since some months.
38) Message boards : Questions and problems : One processor for one project (Message 32782)
Posted 13 May 2010 by Profile äxl
Post:
...and I have Windows. :-D
39) Message boards : Questions and problems : One processor for one project (Message 32775)
Posted 13 May 2010 by Profile äxl
Post:
No, there isn't, sorry.


;-(

It is - over the long term.


Not in 1.5 years it's not.

Okay, 28000/15000 isn't quite 50/50 ;-)


50/50 in time. ;-)
Member at SETI since November 2008.
Member at Rosetta sind December 2008.
But the uneven credit counting is another problem...

Tough luck :-) they only have work very sporadically.


Yeah. But as you can see I didn't have to use it very often.

Depending on your BOINC version, there might be bugs that make it difficult to keep the resource share you've set, especially if you are using a GPU for crunching.


6.10.18
And no GPU.
40) Message boards : Questions and problems : One processor for one project (Message 32773)
Posted 13 May 2010 by Profile äxl
Post:
Hi guys,

this may sound not too intelligent, but:
Is there a way to assign one project to one processor?

I always seem to get too many applications from one project or the other. Just depends on which project is faster. I get two apps and the other project won't request other tasks. If I increase the work buffer I only get more tasks from one project. I don't think it's really weighted.

Look at my statistics in the signature. I'm sharing 50/50 since two months after I started with grid computing. And SETI is even more bound to leave me taskless.
I tried Lattice when I didn't get tasks either from SETI or Rosetta.


Previous 20

Copyright © 2024 University of California.
Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation.