What is with the 2 pin connectors? Do I need an adapter to hook this thing up to my power supply? or does it just run off the 6 pin?
The first units only had those 2-pin deals, but your'e good with just using the 6pin PCIe for power on the units that have them.
is there a way to see the actual cgminer process going on? I doubt it recognises anything other than the first board but id love to check the live log and settings
still looking for a way to track the actual cgminer stats to see the error rates and per-board details
If you SFTP in, under /home/pi/Garden you'll find "miner.php"
Copy that over to /var/www
then go to [your.controller's.ip.address]/miner.php
Good old fashioned no-frills CGminer web interface. Won't give you per board details but at least shows you HW errors.
That said....
(Note I'm not gonna do a full tutorial here because I was just messing around myself, so YMMV)
As far as actually seeing the CGMiner output, I briefly tried a thing - I installed "screen" to their OS (which seems to be some sort of raspbian) and then edited the start.sh command to use screen instead of 'nohup' to call CGminer.
Then you can just SSH in and sudo screen -r to view the miner output.
I wasn't thrilled with this.
Now, it's worth noting their fork of CGminer doesn't seem to have a fully functional TUI - so, working with the API is probably a better way to get data from CGminer. if nothing else, you can edit the start.sh command which currently sends the output to /dev/null to send it's output to some sort of a log file. It seems to generate a LOT of output so I'm not sure how fast this would fill up. But if you just wanted to run it for a while to see whats up just change /dev/null to like /home/pi/cg.log and then pluck the log file to rummage through for useful data.
If you're savvy I'm sure you can install some sort of a log-rotator to compress and save old logs - but I haven't tried such.