|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
Application developers can seamlessly integrate the Advantage Database install with their application install. Learn the best practices used when setting up silent installs with this seminar. |
|
#61
|
|||||
|
|||||
|
I'll PM this to you as well in case you don't see the thread, but one of the problems with folding on linux is getting it set up like a service as with the windows client.
Here's how. bash Code:
__________________
~James [Not currently seeking freelance work] Like philosophy or interested in spirituality? Philosophorum. Game Dev Experts Forums Foresight Linux - Because your desktop should be cool! Linux FAQ FedoraFAQ UbuntuGuide Last edited by LinuxPenguin : January 9th, 2006 at 01:31 PM. |
|
#62
|
|||
|
|||
|
I dont get this, where do I find my user id#? My username is Immortal1490, and I have a WU completed on their site, but how do I find the 6 digit number that UserCP asks for?
edit: nevermind i figured it out from the URL Last edited by Immortal1490 : January 9th, 2006 at 04:01 PM. |
|
#63
|
||||
|
||||
|
Quote:
![]() hope that helps !!
__________________
|
|
#64
|
||||
|
||||
|
Quote:
I'm running the gui, just downloaded the console and will switch over tonight, cheers. |
|
#65
|
||||
|
||||
|
Quote:
|
|
#66
|
||||
|
||||
|
I did a quick benchmark test, the gui is only slower if you leave it displaying the protien on the screen (which i don't) so you can leave that installed aswell if you are not comfortable with the comandline.
I can not guarentee the accuracy of these tests.
__________________
Did this help? If so, please add to my Reputation by clicking the at the top of this postMy Folding: -
|
|
#67
|
||||
|
||||
|
Quote:
The GUI expends CPU cycles calculating the graphics, regardless of whether they are being shown or not. @LP, thanks, working on incorporating that.
__________________
Asker of questions and all-around annoying guy. ![]() For difficult hardware problems, go to the Hard Side™-- DevHardware Forums |
|
#68
|
||||
|
||||
|
Quote:
|
|
#69
|
||||
|
||||
|
Most linux systems are similar I think. I just made a full init script for my system
Code:
. /etc/sysconfig/rc
. ${rc_functions}
PIDFILE=/home/kicken/.FAH/FAH.pid
case "${1}" in
start)
boot_mesg "Starting Folding@Home clinet ..."
if [ ! -f $PIDFILE ]; then
su - kicken -c \$HOME/bin/startfah
fi
evaluate_retval
;;
stop)
boot_mesg "Stopping Folding@Home client ..."
if [ -f $PIDFILE ]; then
kill `cat $PIDFILE`
rm $PIDFILE
fi
evaluate_retval
;;
restart)
${0} stop
sleep 1
${0} start
;;
*)
echo "Usage: ${0} {start|stop|restart}"
exit 1
;;
esac
And the startfah script is simply: Code:
cd $HOME/.FAH ./FAHClient >/dev/null 2>&1 & echo $! > FAH.pid That's for my server. For my desktop I made a similar startfah script, but I just call it from my login scripts so it starts when I login rather than when I boot up (which is more or less the same time)
__________________
Spidermonkey Tutorial http://www.aoeex.com/gmap.php - Put yourself on the map |
|
#70
|
|||
|