Boinc unter Linux?

Habe mir den boinc clienten 5.4.11, oder so runter geladen, installiert. Danach als er offen war, verweigerte er mir das anmelden bei den projekten! er meinte nur, ich solle mit localhost verbinden, obwohl das bereits war!

Was kann ich tun, neustarten half nix!

lg

Das wollte ich auch schon ausprobieren

werd mal meine Debian Kiste damit beschäftigen :wink:
schau ma mal ob ich was finde.

Thx! Ubuntu hat ja auch ein Debian unterbau, nicht?

lg

[quote=“beatjunky99”]Thx! Ubuntu hat ja auch ein Debian unterbau, nicht?

lg[/quote]

soviel ich weiss ja!
Ich hab noch nie auf Ubuntu gearbeitet soviel ich aber weiss is es Debian

Edit: lief bei mir sofort nachdem ich meinen Auth Key wieder hatte :wink:
Ich muss dazu sagen das ich rein via Shell arbeite!
Also no GUI oder irgendwas!

Hier die Syntax:

./run_client  -attach_project http://einstein.phys.uwm.edu/ %authkey% -no_gui_rpc

mit - deamon am schluss rennt er als Systemdeamon ich lass es in nen screen laufen

screen -A -m -d -S einstein ./run_client  -attach_project http://einstein.phys.uwm.edu/ %authkey% -no_gui_rpc

Hallo Jungs,

prima, dass auch Linux Kisten Arbeit bekommen.

Ubuntu ist ein Debian Derivat.

Hier ein paar nette Seiten Doku was den Boinc Client an sich betrifft:
Core Client configuration files, commands…
BOINC add-on software
Und hier boinc_cmd

Hier noch das /etc/init.d/boinc Script meiner Linux Kiste, ist eine modifizierte Variante einer Vorlage die es unter o.g. Add-on Seite mal gab.[code]#!/bin/sh

Author(s): Michela Taufer taufer@scripps.edu, 2004

Andre Kerstens kerstens@scripps.edu, 2004

/etc/init.d/boinc_boot_linux

chkconfig: - 85 15

description: Boinc is a software platform for distributed computing using volunteered computer resources

processname: boinc_3.02_i686-pc-linux-gnu

pidfile: /var/run/boinc.pid

config: /usr/local/boinc/config

BOINC options

#Usage: ./boinc [options]

-version show version info

-exit_when_idle Get/process/report work, then exit

-show_projects show attached projects

-return_results_immediately contact server when have results

-detach_project URL detach from a project

-reset_project URL reset (clear) a project

-attach_project attach to a project (will prompt for URL, account key)

-update_prefs URL contact a project to update preferences

-run_cpu_benchmarks run the CPU benchmarks

-check_all_logins check input from remote users

-allow_remote_gui_rpc allow remote GUI RPC connections

BOINC_USER=root
BOINC_EXE="/usr/local/boinc/boinc"
BOINC_DIR="/usr/local/boinc"
#BOINC_PARAMS="-exit_when_idle -return_results_immediately"
#BOINC_PARAMS="-return_results_immediately"
#BOINC_PARAMS="-update_prefs http://setiathome.berkeley.edu -allow_remote_gui_rpc"
BOINC_PARAMS="-update_prefs http://einstein.phys.uwm.edu/"
#BOINC_PARAMS="-allow_remote_gui_rpc"
#BOINC_PARAMS="-run_cpu_benchmarks"
#BOINC_PARAMS="-reset_project http://setiathome.berkeley.edu"
#BOINC_PARAMS=""
BOINC_LOG="/var/log/boinc.log"
BOINC_PID="/var/run/boinc.pid"

test -x $BOINC_EXE || exit 1

case “$1” in
start)
echo “Starting Boinc…”
cd $BOINC_DIR
$BOINC_EXE $BOINC_PARAMS >> $BOINC_LOG 2>&1 &
;;
stop)
echo “Stopping Boinc…”
killall $BOINC_EXE
;;
restart)
## Stop the service and regardless of whether it was
## running or not, start it again.
$0 stop
# sometimes boinc needs some time to stop
sleep 3
$0 start
;;
*)
echo “Usage: $0 {start|stop|restart}”
exit 1
esac[/code]

Das hat den Vorteil, dass es noch ein schönes Logfile der Aktivitäten gibt.

Gut Crunch
Jonny

UPDATE: Ups, das 100. Posting für Fremdgehen verschwendet :laughing: