Using cgminer with a config file
-
There are plenty of tutorials about getting cgminer up and running fast quickly using a bat file. How about using the config file?
Also, I have a question about workers and gpus: In a multi-gpu setup, do you need to configure cgminer to use a different workers on each graphics card? How is this done? -
Here’s an old one I used. I’m sure there are better as I went to batch files instead and didn’t spend much time with conf files. You will need to adjust the settings to your card (of course) and pool info (of course). Shaders is useless when using thread-concurrency, but it’s there if you prefer using it over TC. Probably could adjust the scan time too.
[code]{
“pools” : [
{
“url” : “http://mypoolurl.com:PORT”,
“user” : “YourName.1”,
“pass” : “x”
},{
“url” : “http://myotherpoolurl.com:PORT”,
“user” : “YourName.1”,
“pass” : “x”
}
]
,
“intensity” : “16”,
“vectors” : “1”,
“worksize” : “256”,
“kernel” : “scrypt”,
“lookup-gap” : “0”,
“thread-concurrency” : “8192”,
“shaders” : “400”,
“gpu-engine” : “0-0”,
“gpu-fan” : “0-85”,
“gpu-memclock” : “0”,
“gpu-memdiff” : “0”,
“gpu-powertune” : “0”,
“gpu-vddc” : “0.000”,
“temp-cutoff” : “85”,
“temp-overheat” : “75”,
“temp-target” : “65”,
“api-port” : “4028”,
“expiry” : “120”,
“gpu-dyninterval” : “7”,
“gpu-platform” : “0”,
“gpu-threads” : “1”,
“hotplug” : “5”,
“log” : “5”,
“no-pool-disable” : true,
“queue” : “1”,
“scan-time” : “60”,
“scrypt” : true,
“temp-hysteresis” : “3”,
“shares” : “0”,
“balance” : true,
“kernel-path” : “/usr/local/bin”
}
[/code]