Showing posts with label Cpu Miner. Show all posts
Showing posts with label Cpu Miner. Show all posts

Thursday, December 7, 2017

CentOS: Running CPU Miner using cpulimit (90%)

Command:

# cpulimit -l 90 -- ./minerd --config n-zeny.json


Result:

[2017-12-07 14:19:23] 2 miner threads started, using 'yescrypt' algorithm.
[2017-12-07 14:19:23] Starting Stratum on stratum+tcp://mining-zeny.mdpool.info:6969
[2017-12-07 14:19:23] Stratum requested work restart
[2017-12-07 14:19:26] accepted: 1/1 (100.00%), 0.36 khash/s (yay!!!)
[2017-12-07 14:19:28] accepted: 2/2 (100.00%), 0.56 khash/s (yay!!!)
[2017-12-07 14:19:44] accepted: 3/3 (100.00%), 0.51 khash/s (yay!!!)
[2017-12-07 14:19:49] accepted: 4/4 (100.00%), 0.53 khash/s (yay!!!)

CentOS: Cpu Mining: BitZeny

Command:

$ cat bitzeny.json


Result:

{
"url": "stratum+tcp://mining-zeny.mdpool.info:6969",
"user": "user.worker",
"pass": "password",

"algo" : "yescrypt",
"threads" : "4",

"quiet" : true
}


Command:

./cpuminer --config bitzeny.json




CentOS: Installing Cpu Miner

Command:

$sudo yum -y groupinstall "Development Tools"
$ sudo yum -y install git libcurl-devel python-devel screen rsync
$ git clone https://github.com/bitzeny/cpuminer.git cpuminer
$ cd cpuminer/
$ ./autogen.sh
$ ./configure CFLAGS="-O3"
$ make