Has anyone compiled cgminer & used it on Linux? It seems like everyone is either using the Zencontroller or Windows. I have it compiled but don't have my miner in hand yet to try it. What would be the proper command line for running it in Linux vs Pi/Windows?
Yep... running it now, testing out a clock of 350:
---
#!/bin/bash
# set the worker name and password for your mining pool
WORKER="Cassey.`hostname`"
PASS="pass"
OPTS="-S /dev/ttyUSB0 --nocheck-golden --chips-count 6 --ltc-clk 350 --api-listen --api-port=40113 --api-allow=10.184.155.0/24"
# enter pool URLS in format URL:port
URL0="-o stratum+tcp://mine.multicoinpool.org:3310"
# formart worker strings
S0="$URL0 -O $WORKER":"$PASS"
# concatenate command to run
CMD="/cgminer*/cgminer"
RUN="$CMD $OPTS $S0"
# echo instead of running, if for testing purposes
echo "$RUN"
$RUN
----
API stuff is so that CGRemote can monitor for me.
Cassey