Cgminer.conf: Difference between revisions

From lurkmore wiki
Jump to navigationJump to search
No edit summary
No edit summary
Line 42: Line 42:
'''Of course, all of the above settings would require modification to match your own hardware and needs.'''
'''Of course, all of the above settings would require modification to match your own hardware and needs.'''


[[Category:Cryptocurrency]]
[[Category:Cryptocurrency]][[Category:Software]]

Revision as of 17:05, 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,
"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.