Cgminer.conf

From lurkmore wiki
Revision as of 17:01, 23 September 2013 by Kyrio (talk)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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,
"gpu-engine" : "1000",
"auto-fan" : true,
"gpu-memclock" : "1250",
"gpu-powertune" : "0",
"gpu-vddc" : "1.090",
"temp-target" : "70",
"queue" : "0",

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