Skip to content

Commit

Permalink
update readme and sample config
Browse files Browse the repository at this point in the history
  • Loading branch information
tpruvot committed May 23, 2017
1 parent 2160049 commit 05abaf2
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 19 deletions.
20 changes: 9 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
ccminer
=======

Based on Christian Buchner's & Christian H.'s CUDA project, no more active on github recently.
Based on Christian Buchner's & Christian H.'s CUDA project, no more active on github since 2014.

Fork by tpruvot@github with X14,X15,X17,Blake256,BlakeCoin,Lyra2RE,Skein,ZR5 and others, check the [README.txt](README.txt)
Check the [README.txt](README.txt) for the additions

BTC donation address: 1AJdfCpLWPNoAMDfHF1wD5y8VgKSSTHxPo
[![tip for next commit](https://tip4commit.com/projects/927.svg)](https://tip4commit.com/github/tpruvot/ccminer)
BTC donation address: 1AJdfCpLWPNoAMDfHF1wD5y8VgKSSTHxPo (tpruvot)

A part of the recent algos were originally written by [djm34](https://github.com/djm34).
A part of the recent algos were originally written by [djm34](https://github.com/djm34) and [alexis78](https://github.com/alexis78)

This variant was tested and built on Linux (ubuntu server 14.04) and VStudio 2013 on Windows 7.
This variant was tested and built on Linux (ubuntu server 14.04, 16.04, Fedora 22 to 25)
It is also built for Windows 7 to 10 with VStudio 2013, to stay compatible with Windows Vista.

Note that the x86 releases are generally faster than x64 ones on Windows.
Note that the x86 releases are generally faster than x64 ones on Windows, but that tend to change with the recent drivers.

The recommended CUDA Toolkit version is [6.5.19](http://developer.download.nvidia.com/compute/cuda/6_5/rel/installers/cuda_6.5.19_windows_general_64.exe), but some light algos could be faster with the version 7.5 (like blake and skein).
The recommended CUDA Toolkit version was the [6.5.19](http://developer.download.nvidia.com/compute/cuda/6_5/rel/installers/cuda_6.5.19_windows_general_64.exe), but some light algos could be faster with the version 7.5 and 8.0 (like lbry, decred and skein).

About source code dependencies
------------------------------
Expand All @@ -32,7 +32,5 @@ The tree now contains recent prebuilt openssl and curl .lib for both x86 and x64
To rebuild them, you need to clone this repository and its submodules :
git clone https://github.com/peters/curl-for-windows.git compat/curl-for-windows

On Linux, you can use the helper ./build.sh (edit it if required)

There is also an old [Tutorial for windows](http://cudamining.co.uk/url/tutorials/id/3) on [CudaMining](http://cudamining.co.uk) website.
On Linux, you can use the helper ./build.sh (edit configure.sh and the Makefile.am if required)

12 changes: 9 additions & 3 deletions README.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

ccminer 2.0 (14 May 2017)
ccminer 2.1-dev (June 2017) "Equihash"
---------------------------------------------------------------

***************************************************************
Expand Down Expand Up @@ -88,6 +88,7 @@ its command line interface and options.
decred use to mine Decred 180 bytes Blake256-14
deep use to mine Deepcoin
dmd-gr use to mine Diamond-Groestl
equihash use to mine ZEC, HUSH and KMD
fresh use to mine Freshcoin
fugue256 use to mine Fuguecoin
groestl use to mine Groestlcoin
Expand Down Expand Up @@ -164,8 +165,9 @@ its command line interface and options.
--no-color disable colored output
-D, --debug enable debug output
-P, --protocol-dump verbose dump of protocol-level activities
-b, --api-bind IP/Port for the miner API (default: 127.0.0.1:4068)
--api-remote Allow remote control
-b, --api-bind=port IP:port for the miner API (default: 127.0.0.1:4068), 0 disabled
--api-remote Allow remote control, like pool switching, imply --api-allow=0/0
--api-allow=... IP/mask of the allowed api client(s), 0/0 for all
--max-temp=N Only mine if gpu temp is less than specified value
--max-rate=N[KMG] Only mine if net hashrate is less than specified value
--max-diff=N Only mine if net difficulty is less than specified value
Expand Down Expand Up @@ -277,6 +279,10 @@ features.

>>> RELEASE HISTORY <<<

v2.1 (unfinished)
Interface equihash algo with djeZo solver (from nheqminer 0.5c)
New api parameters (and multicast announces for local networks)

May. 14th 2017 v2.0
Handle cryptonight, wildkeccak and cryptonight-lite
Add a serie of new algos: timetravel, bastion, hmq1725, sha256t
Expand Down
11 changes: 6 additions & 5 deletions ccminer.conf
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,19 @@
"_comment1" : "Possible keys are the long options (ccminer --help)",
"_comment2" : "todo: support /* comments */",

"algo" : "blake",
"intensity": 19,
"algo" : "lbry",
"intensity": 22,

"api-bind": "127.0.0.1:4068",
"statsavg": 20,

"max-log-rate": 60,
"quiet" : false,
"debug" : false,
"protocol" : false,
"cpu-priority" : 3,

"url" : "stratum+tcp://stratum.eu.miners-pool.eu:8421",
"user" : "ShGCAFrspnLDo414EzUyJm4k5Qr2Kkrmvh",
"pass" : "x"
"url" : "stratum+tcp://yiimp.ccminer.org:3334",
"user" : "bK2wcSFJv2nnNjFvTN5Q7VX8X8unJktJsa",
"pass" : "donate"
}

0 comments on commit 05abaf2

Please sign in to comment.