File tree Expand file tree Collapse file tree 5 files changed +67
-0
lines changed Expand file tree Collapse file tree 5 files changed +67
-0
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,19 @@ The source code for the binaries can be found under [https://github.com/xmrMiner
17
17
18
18
If * xmrMiner* found ** no device** , please try to install the latest CUDA driver from [ this] ( https://developer.nvidia.com/cuda-downloads ) side.
19
19
20
+ # Easy Start
21
+
22
+ If you are not so familiar with the Windows terminal you could use the easy scripts to start your miner.
23
+ - press on the right top in github on the green buttom ` Clone or Download `
24
+ - press ` Download ZIP `
25
+ - extract the downloaded zip file
26
+ - open the files ` xmrMiner_VERSION_dyn_easyStart.bat ` with a text editor
27
+ - substitude the adress in ` xmrAdress ` with your Monero(XMR) adress
28
+ - substitude the ` poolUrl ` with your favorite mining pool url
29
+ - check the ` poolPassword `
30
+ - save all
31
+ - double klick on ` xmrMiner_VERSION_dyn_easyStart.bat ` to start the miner
32
+
20
33
# Performance
21
34
22
35
please read the [ original document] ( https://github.com/xmrMiner/xmrMiner/blob/master/README.md )
Original file line number Diff line number Diff line change
1
+ rem this is a helper script to start xmrMiner
2
+
3
+ rem the word "rem" at the beginning of a line is a line with a comment
4
+
5
+ rem please substitude with you Monero adress
6
+ set xmrAddress = 43NoJVEXo21hGZ6tDG6Z3g4qimiGdJPE6GRxAmiWwm26gwr62Lqo7zRiCJFSBmbkwTGNuuES9ES5TgaVHceuYc4Y75txCTU
7
+
8
+ rem passwort for your mining pool (very often only a x)
9
+ set poolPassword = x
10
+
11
+ rem mining pool webaddress
12
+ set poolUrl = stratum+tcp://xmr.crypto-pool.fr:80
13
+
14
+ rem set here the launch param to tune xmrMiner (see xmrMiner_VERSION.exe --help), e.g. --launch=8x3
15
+ rem example: set launchParam=--launch=64x3
16
+ set launchParam =
17
+
18
+ rem greater value means more interactivity of your system but lower hash rate
19
+ set bFactor = 8
20
+
21
+ rem time between a kernel start
22
+ set bSleep = 100
23
+
24
+
25
+ xmrMiner_0.2.0_dyn.exe --url=%poolUrl% -u %xmrAddress% -p %poolPassword% %launchParam% --bfactor=%bFactor% --bsleep=%bSleep%
26
+
27
+ pause
Original file line number Diff line number Diff line change
1
+ rem this is a helper script to start xmrMiner
2
+
3
+ rem the word "rem" at the beginning of a line is a line with a comment
4
+
5
+ rem please substitude with you Monero adress
6
+ set xmrAddress = 43NoJVEXo21hGZ6tDG6Z3g4qimiGdJPE6GRxAmiWwm26gwr62Lqo7zRiCJFSBmbkwTGNuuES9ES5TgaVHceuYc4Y75txCTU
7
+
8
+ rem passwort for your mining pool (very often only a x)
9
+ set poolPassword = x
10
+
11
+ rem mining pool webaddress
12
+ set poolUrl = stratum+tcp://xmr.crypto-pool.fr:80
13
+
14
+ rem set here the launch param to tune xmrMiner (see xmrMiner_VERSION.exe --help), e.g. --launch=8x3
15
+ rem example: set launchParam=--launch=64x3
16
+ set launchParam =
17
+
18
+ rem greater value means more interactivity of your system but lower hash rate
19
+ set bFactor = 8
20
+
21
+ rem time between a kernel start
22
+ set bSleep = 100
23
+
24
+
25
+ xmrMiner_0.2.0.exe --url=%poolUrl% -u %xmrAddress% -p %poolPassword% %launchParam% --bfactor=%bFactor% --bsleep=%bSleep%
26
+
27
+ pause
You can’t perform that action at this time.
0 commit comments