Майнинг соло
For solo mining you will need Karbowanec command line cient software named karbowanecd. You can download it under CLI wallet section.
You will also need wallet address to where mined coins will be received. You can use GUI wallet, web-wallet, simplewallet (which is bundled with CLI daemon) or even paperwallet.
You can start solo mining in few diferent ways. For example this way:
Unpack CLI wallet package, and run karbowanecd with followimg parameters:
karbowanecd --start-mining YOUR_WALLET_ADDRESS --mining-threads 2
,
where YOUR_WALLET_ADDRESS – is you wallet where you will receive mined Karbo, and --mining-threads – CPU cores, which you want to use for mining. Remember that the best results will give the the same number of cores as L3 CPU cache divided by 2.
You can also run solo mining from simplewallet, or use standalone miner from the Command-line suit.
Pool mining
You can start pool mining right in the Karbowanec wallet in 'Mining' tab. After a while you'll start receiving your first Karbo. You can check the status of your mining on the pool site by entering your wallet in the field 'Your Stats & Payment History'. The wallet will use CPU for mining.
There is also special mining software for CPU and GPU.
You can use various miners for CryptoNote coins. The list of selected mining software is below.
Software for mining in pools
App Name | Architecture | Downloads | Source Code | |
---|---|---|---|---|
XMRig | CPU | Github releases | Github | |
Example:
xmrig.exe -o pool.karbowanec.com:3333 -u YOUR_WALLET_ADDRESS -p x
|
||||
XMRig NVIDIA | NVIDIA GPU | Github releases | Github | |
Example:
xmrig.exe -o pool.karbowanec.com:5555 -u YOUR_WALLET_ADDRESS -p x
|
||||
ccminer (tpruvot) | NVIDIA GPU | Github releases | Github | |
Example:
ccminer -a cryptonight -o stratum+tcp://pool.karbowanec.com:5555 -u YOUR_WALLET_ADDRESS -p x
|
||||
XMR-STAK-AMD | AMD GPU | Github | Github | |
Example config.txt (replace the relevant lines):
"pool_address" : "pool.karbowanec.com:5555",
|
||||
Wolf's OpenCL XMR Miner | AMD GPU | Github | Github | |
Example:
miner.exe krb.conf Example of krb.conf: {
"Algorithms":
[
{
"name": "CryptoNight",
"devices":
[
{
"index": 0,
"corefreq": 1000,
"memfreq": 1500,
"fanspeed": 65,
"powertune": 20,
"threads": 1,
"rawintensity": 1336,
"worksize": 8
}
],
"pools":
[
{
"url": "stratum+tcp://pool.karbowanec.com:5555",
"user": "YOUR_WALLET_ADDRESS",
"pass": "x"
}
]
}
]
}
|