Search content
Sort by

Showing 2 of 2 results by spoonwzd
Post
Topic
Board Mining (Altcoins)
Re: Efudd's Z9/Mini Fuddware v2.1 / PS4 and ZEC Contests have started!
by
spoonwzd
on 05/12/2018, 15:51:04 UTC
I mine on zPool and noticed that a couple of my Z9 Mini's were missing from the pool. When I checked the miners, they were stuck mining on the dev pool and had been doing that for over 12 hours and not flicked back! How do I stop this from happening again? This is way more than the stated 1%.
Post
Topic
Board Hardware
Re: ANTMINER S3+ Discussion and Support Thread
by
spoonwzd
on 15/07/2018, 07:45:55 UTC
If anyone is still interested in this, I've just built cgminer 4.10.0 for the Bitmain Antminer S3.

- Based on the latest cgminer 4.10.0 from git (changelog: https://raw.githubusercontent.com/ckolivas/cgminer/master/NEWS )
- Statically linked with the latest libcurl 7.54
- Built with gcc 5.3.0

Hashes just fine on my unit so far.

Download link: https://yadi.sk/d/CVhgXxmN3K2SBw

Thanks for this. I still spin up my S3 from time to time when I have extra solar spare.

When I run your executable on firmware 2015-01-09 I get: "BitmainAntS3: no bitmain-options specified"

Any ideas?

Edit: Sussed it. It's doesn't like the --version-file part of the script and the definitions for --antminer-options and --antminer-freq are different in your version to what public documentation and the antminer expects.

To fix, you need to alter the following lines in /etc/init.d/cgminer to:

Code:
AOPTIONS="--bitmain-freq $_freq"

PARAMS="--bitmain-options 115200:32:8 $AOPTIONS $POOL1 $POOL2 $POOL3 $_pb $_ow $_bec --api-listen --api-network --bitmain-checkn2diff --bitmain-hwerror --bitmain-voltage $_vl --queue 4096"

$APP --lowmem --bitmain-freq $_freq --bitmain-voltage $_vl -q >/dev/null 2>&1

...which seems to do the trick.