anyone can help me to setup the miner
i want to mine with a cpu.... please tell me what should I do ? I am using windows 8
SOLO MININGDownload miner, open Notepad and write there like this
@echo off
minerd.exe -R 1 -a pluck -o http://127.0.0.1:7755 -u solo -p pass
pause
Save it like SOLO.cmd in miner folder
Download wallet, run it, close it
then open notepad again, write there like this
maxconnections=100
rpcuser=solo
rpcpassword=pass
rpcport=7755
gen=0
server=1
daemon=1
Save it to c:\Users\
YOUR USERNAME\AppData\Roaming\SupCoin\
like
supcoin.confCreate shortcut to wallet exe and in properties write
-server key, I know it's in conf, but some wallets didn't run in server mode without that key.
Example: D:\SupCoin\supcoin-qt.exe -server
Run wallet, wait for sync, run miner.
POOLRegister at pool, create worker, create POOL.cmd in miner folder like this
@echo off
minerd.exe -R 1 -a pluck -o POOL STRATUM -u POOL_LOGIN.WORKER_NAME -p WORKER_PASSWORD
pause
Run miner, don't forget to setup your wallet address at pool options on pool web site.
P2P POOL@echo off
minerd.exe -R 1 -a pluck -o P2P POOL STRATUM -u YOUR_WALLET_ADDRESS -p X
pause