At one time i had [EMAIL PROTECTED] running on the LTSP clients. I had NFS swap 
enabled, so the machines already had some writeable storage. Within the 
NFS swap area, i created a directory for each system. So the path (from 
the client's perspective) was something like /tmp/swapfiles/ws001 
(where ws001 is the client hostname). Then put the [EMAIL PROTECTED] binary in 
the directory (use links or symlinks to save space when you copy the 
binary to each client's directory) and use a script like this to run 
it:

#!/bin/sh
cd /tmp/swapfiles/${HOSTNAME}
while true ; do
    ./setiathome -nice 19 > /dev/null &
    sleep 3600
done

Save the script as /tmp/swapfiles/seti. Then in your lts.conf add 
something like "SETI = Y" and in rc.local add some stuff like so:

SETI=`get_cfg SETI N`
if [ "${SETI}" = "Y" ]; then
    # A few extra lines of script should probably be added here to
    # make sure NFS_SWAP is enabled.
    echo "Starting [EMAIL PROTECTED]"
    /tmp/swapfiles/seti &
fi

Please note, this is from memory and thus hasn't been tested. I *think* 
it'll work. You should be able to use similar concepts to get other 
@Home projects working.

On Friday 18 February 2005 02:04 pm, Brian Beck wrote:
>I've already got [EMAIL PROTECTED] running on both of the Opterons on my
> LTSP server to utilize idle server bandwidth (And there's a lot of
> it, since the server is only used a couple hours a day).  But then I
> got to thinking - would it be possible to combine LTSP's "Local Apps"
> functionality with a Distributed computing project like [EMAIL PROTECTED]
> or [EMAIL PROTECTED] to get max bandwidth?  Because I've also got 32
> terminals averaging 400Mhz apiece sitting idle all day.  Has anyone
> ever tried this?  How would I go about trying it?

-- 
------------------------------------------------------------------------
Dan Ramaley
Digital Media Library Specialist
(515) 271-1934
Cowles Library 140, Drake University



-------------------------------------------------------
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
_____________________________________________________________________
Ltsp-discuss mailing list.   To un-subscribe, or change prefs, goto:
      https://lists.sourceforge.net/lists/listinfo/ltsp-discuss
For additional LTSP help,   try #ltsp channel on irc.freenode.net

Reply via email to