I can not configure the program
bat file is not
how to get to your pool?
{
"_comment1" : "Any long-format command line argument ",
"_comment2" : "may be used in this JSON configuration file",
"api-bind" : "127.0.0.1:4048",
"url" : "",
"user" : "",
"pass" : "cpuminer",
"algo" : "x11",
"threads" : 0,
"cpu-priority" : 0,
"cpu-affinity" : -1,
"benchmark" : false,
"debug" : false,
"protocol": false,
"quiet" : false
}
If you want to mine on the official pool, go to
http://lyrabarpool.duckdns.org/, create new account and create a worker.
For latest windows cpuminer
cpuminer-gw64-lyra2rev2.exe following kind of batch file and configuration file combined works great if the batch file (.bat) is ran inside the miner directory:
cpuminer-gw64-lyra2rev2.exe -c cpuminer.lyrabar.conf
pause
Create a configuration file called
cpuminer.lyrabar.conf and put following inside it and change parts where your pool account name, worker and worker password is mentioned.
{
"url": "stratum+tcp://lyrabarpool.duckdns.org:4004",
"user": "AccountName.WorkerName",
"pass": "x",
"algo" : "lyra2rev2",
"threads" : "1",
"max-temp" : "80",
"cpu-priority" : "2",
"scantime": "15"
}
You can change threads value to bigger. This configuration is uses one core, so change threads value for example to 3 if want to use three cores of the CPU. Max temp cuts off mining if CPU temperature hits the value, increase scantime if you have very low end CPU.
Hope this helps