cgminer.conf

From lurkmore wiki
Revision as of 17:33, 23 September 2013 by Kyrio (talk)
Jump to navigationJump to search

The most basic configuration needed in cgminer's cgminer.conf is as follows:

The following config is for scrypt based cryptocoin mining.

{
"pools" : [
	{
		"url" : "stratum+tcp://first-pool.com:3333",
		"user" : "lurkmore.1",
		"pass" : "x"
	},
	{
		"url" : "stratum+tcp://backup-pool1.com:3333",
		"user" : "lurkmore.1",
		"pass" : "x"
	}
],

"intensity" : "20",
"scrypt" : true,
"thread-concurrency" : "24000",
"worksize" : "256",

"kernel-path" : "/usr/local/bin"
}

Slightly more advanced options to add to the above config:

"api-allow" : "192.168.1.120",
"api-listen" : true,
"auto-fan" : true,
"gpu-engine" : "1000",
"gpu-memclock" : "1250",
"gpu-powertune" : "0",
"gpu-vddc" : "1.125",
"temp-target" : "70",
"queue" : "0",

Of course, all of the above settings would require modification to match your own hardware and needs.