I used this method off the first page to set up everything. So, I thought this would take care of it. I did use a different dependency set though I believe. The RPi does provide enough power to run it at 125 as thats what I am doing now, though I know if I want to run it higher I will need a powered USB. I think I fixed the issue with restarting as I did have too many devices plugged in the the RPi and it wasn't getting enough juice. However, after hashing fine for hours, does the power issue explain it failing when the pool hit a block?
If you want to run the sticks on linux, you'll need either bfgminer or cgminer. Either way you are probably going to have to compile them, but I've had little trouble with this so it's probably just a matter of running a few simple commands.
Here's what you'd do to get cgminer on linux going:
1. Open a terminal.
2. wget
http://gekkoscience.com/misc/cgminer-gekko.tar.gz This downloads the file- you can save it from your browser instead, it's the same thing.
3. tar -xvzf cgminer-gekko.tar.gz
This extracts the files. which are compressed (like a zip file for linux)
4. cd cgminer-gekko
Enters the cgminer-gekko folder you just extracted.
5. sudo apt-get install build-essential autoconf automake libtool
You need to install the dependencies for cgminer.
6. ./autogen.sh
This will generate a configure script for you which will set up compiling for your system.
7. ./configure --enable-gekko
This will configure the build. This is the most likely place to have anything go wrong, if it does, let me know exactly what's up. Odds are it would be some package that you should have installed.
8. make
Performs the build. If you get an error there- again, let me know details.
You are ready to run cgminer. This should look something like:
./cgminer -o stratum+tcp://stratum.mining.eligius.st:3334 -u 1BURGERAXHH6Yi6LRybRJK7ybEm5m5HwTr --compac-freq 150
Although if you don't have permissions setup you may have to become root or use sudo, eg,
sudo ./cgminer -o stratum+tcp://stratum.mining.eligius.st:3334 -u 1BURGERAXHH6Yi6LRybRJK7ybEm5m5HwTr --compac-freq 150
cgminer should now detect any compacs plugged in while it is running. Obviously you'll use a slightly different command to launch cgminer, if you use that one you'll be mining for us! Most pools even post example commands, let me know if you need help figuring it out.
--
novak
[/quote]