1) In your home directory (assuming it's /home/george) create two folder, one for each CPU :
cd
mkdir SETI
cd SETI
mkdir CPU0
mkdir CPU1
2) Download the linux SETI client : V3.03 is faster and you can grab it
here
(Note : it's not zipped... just rename it setiathome this way : mv setiathome.zip setiathome)
3) make it executable : chmod 755 setiathome
4) and put one copy in each folder CPU0 and CPU1 : cp setiathome /home/george/SETI/CPU0/
cp setiathome /home/george/SETI/CPU1/
5) Now time to launch SETI for the first time...
cd /home/george/SETI/CPU0/
# If you don't use a SETI proxy then just type
./setiathome
# Else (if you use a SETI proxy (my.seti.proxy listening on port 5517 in the example)) then type
./setiathome -proxy my.seti.proxy:5517
--> SETI will ask you to enter your SETI e-mail adress and download a new work_unit. When done wait a minute to be sure and type CTRL C to terminate the setiathome process.
You now have all the needed files in your work directory.
Then repeat this for cpu1.
6) Launch setiathome at boot time this way (You'll have to be root to do this) :
You'll have to modify your /etc/rc.local file : vi /etc/rc.local
Then add these lines at the bottom of the file :
# Launch SETI@Home
cd /home/george/SETI/CPU0
./setiathome -proxy my.seti.proxy:5517 -nice 19 &
cd /home/despretz/SETI/CPU1
./setiathome -proxy my.seti.proxy:5517 -nice 19 &
7) That's all folks !
🙂
You now could use
KSetiWatch to monitor your two processes under KDE.
Hope this helps.
🙂