#1 Le 23/04/2006, à 13:12
- patrice.vallade
install seti athome ?
J'ai voulu installe l'ecran de veille setiathome mais helas cela a rate et j'ai un point d'interogation dans kpackage comment enlever ce paquet car je peux plus faire de mise a jour ni installe d'autre paquetage car tout s'arrete sur la demande de connexion sur le site de berkley...Merci
J'adore Linux mais je ne suis pas sectaire !
Core2Duo, nvidia 7300GT, compiz-fusion
eeepc: eee-ubuntu; 8.04 en poste loisirs
blog sur ma ville de Lognes: http://blog-lognes.com/
Hors ligne
#2 Le 24/12/2006, à 16:01
- toru
Re : install seti athome ?
même problème et pas de solutions:(
Hors ligne
#3 Le 25/12/2006, à 11:30
- Wakinyan
Re : install seti athome ?
Salut,
à ma connaissance le projet Seti@Home a été abandonné.
Mais vous pouvez installer Folding@home, le projet de Stanford dédié à l'étude des protéines dans la lutte contre les maladies dégénératives (alzheimer, sclérose en plaque, etc).
A+
Edit : si ça vous intéresse, je peux fournir le script permettant de lancer la bête au démarrage du pc sans avoir à aller farfouiller ailleurs que dans votre dossier perso. C'est plus propre
Dernière modification par Wakinyan (Le 25/12/2006, à 11:38)
Hors ligne
#4 Le 25/12/2006, à 15:49
- TraxX
Re : install seti athome ?
Salut,
à ma connaissance le projet Seti@Home a été abandonné.
Mais vous pouvez installer Folding@home, le projet de Stanford dédié à l'étude des protéines dans la lutte contre les maladies dégénératives (alzheimer, sclérose en plaque, etc).A+
Edit : si ça vous intéresse, je peux fournir le script permettant de lancer la bête au démarrage du pc sans avoir à aller farfouiller ailleurs que dans votre dossier perso. C'est plus propre
Bonjour,
Ahhh ceci est une très bonne idée, je suis prenneur bien sur.
Merci à toi du partage
Hors ligne
#5 Le 28/12/2006, à 20:38
- Wakinyan
Re : install seti athome ?
Salut,
voici ce que j'ai fait pour installer F@h proprement chez moi :
1- télécharger le binaire pour Linux sur le site de Stanford
2- le placer dans un dossier /home/utilisateur/FAH
3- renommer le binaire FAH502.exe en FAH502 (ça fait plus mieux )
4- créer dans le même répertoire le fichier fah.sh et le remplir comme suit :
#!/bin/bash
# Source function librairy
#. /etc/init.d
################################################
#This script is a sample script to allow the Folding@Home
#client to run as a service on a linux box.
#
#Install Notes :
#
# customize the two first variables of the script
# make a symbolic link from
# You have to link /etc/rc.d/rc.<your run level>/S99fah
# to this file to make it run.
# start the service (or reboot :-) )
# check it works with the status option
#
#
#How this works ?
#
#When using the script, your seti client will always
#run in the same folder (that you can choose) ,
#this is a "clean" way to run it.
#The service can be:
# -launched with "/etc/rc.d/initd/fah start"
# -stoped with "/etc/rc.d/initd/fah stop"
# -restarted with "/etc/rc.d/initd/fah restart"
# -watched with "/etc/rc.d/initd/fah status"
# -be logged with "/etc/rc.d/initd/fah log"
#As the last option (log) in quite unsual,
#it is intended to be used with the cron daemon
#to allow users to log their progress in some file
#so that can get a good idea of there current score
#and progress.
#Here are the 2 lines to type in your crontab :
# SHELL=/bin/bash
# 30 0 * * * "/etc/rc.d/initd/fah log"
#You must have write permission on all the files
#to add it to your crontab.
#Author Stephane NICOLAS
#<snicolas@iad.ift.ulaval.ca>
#This program is distributed under the terms of the GPL.
#You can get a copy of it at
#http://www.fsf.org/copyleft/copyleft.html#translations
# Adaptations by OldFrog (Amdmb.com) to run
# Folding@Home as a service for as many CPUs as possible
################################################
#This variable points to the client's executable directory
#change this value to define the location of your client.
#We do NOT need the client to be in your $PATH
FAH_CLIENT_DIR=/home/utilisateur/FAH
#This direcory contains the root of folding@home's workspace
# The directory where the file client.cfg is stored
#you can customize it.
FAH_DIR=/home/utilisateur/FAH
case "$1" in
start)
running=`ps -A | grep FahCore`
if( [ "${running}" == "" ] )
then
echo -n "Starting computing F@H: "
cd $FAH_DIR/
${FAH_CLIENT_DIR}/FAH502 >/dev/null 2>&1 &
else
echo -n "F@H is already running"
fi
echo ""
;;
stop)
echo -n "Shutting down F@H: "
running=`ps -A | grep FahCore`
if( [ "${running}" == "" ] )
then
echo -n "FAH Client is not running"
else
killall FAH502
running=`ps -A | grep FahCore`
toto=`echo $running | awk -F " " '{ print $4 }'`
killall $toto
fi
echo
;;
restart)
$0 stop
$0 start
;;
status)
running=`ps -A | grep FahCore`
#thanks to Toan for this bug fix
if( [ "${running}" == "" ] )
then
echo -n "F@H client is not running."
else
echo -n "F@H client's core runs since "
running=`ps -A | grep FahCore | grep -v 00:00:00`
echo ${running} | awk -F " " '{ print $3 }'
fi
echo ""
;;
log)
/bin/date >> $FAH_DIR/log
$0 status >> $FAH_DIR/log
echo "*******************************************" >> $FAH_DIR/log
;;
*)
echo "Usage: fah {start|stop|restart|status}"
exit 1
esac
Remplacez tous les /home/utilisateur/FAH par votre nom de session.
5- ajouter la ligne suivante dans Système > Préférences > Session > Programmes au démarrage :
/home/utilisateur/FAH/fah.sh start
6- la première fois, taper cette même ligne dans un terminal pour lancer la configuration du programme (Pseudo, équipe à laquelle vous appartenez, etc).
Par la suite, il est possible de reconfigurer le client en lançant directement le binaire de la manière suivante :
./FAH502 -config
Voilà. Comme ça, on ne se prend pas la tête. Le jour où on veut désinstaller, on vire le dossier FAH et on en parle plus
Dernière modification par Wakinyan (Le 28/12/2006, à 21:21)
Hors ligne