Help to get my linux box folding
JB
Carlsbad, CA
Ok, here is the deal, ive been searching everywhere and cant find out how to do this...Im running Debian Linux on my server, and i want to have F@H run at bootup. I guess i could use screen, but i dont want to have to go in and start it whenever i boot up my system. I tried a technique on a web page by using rc.local, but then it ignored my config file and started folding under annoymous:( anyone else have this working?
0
Comments
I'm guessing the command looked something like -
/opt/foldingathome/console.exe 1>&2 >/dev/null &
But what you actually need in there is -
cd /opt/foldingathome && /opt/foldingathome/console.exe 1>&2 >/dev/null &
If you dont set the CD before hand then it will make new config files where the console executing pointers current directory is... (either / or your home).
NS
The & on the end just means carry on, so it doesn't hold up the prompt.
NS