Cgminer.conf: Difference between revisions

From lurkmore wiki
Jump to navigationJump to search
No edit summary
 
No edit summary
Line 1: Line 1:
The most basic configuration needed in [[cgminer]]'s '''cgminer.conf''' is as follows:
{{lowercase}}The most basic configuration needed in [[cgminer]]'s '''cgminer.conf''' is as follows:


The following config is for [[Scrypt]] based [[cryptocoin]] mining.
The following config is for [[Scrypt]] based [[cryptocoin]] mining.

Revision as of 17:01, 23 September 2013

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.