Skip to content

Commit 8d1fa2b

Browse files
author
psychocrypt
committed
release version 0.2.0
- add 0.2.0 binaries - remove 0.1.1.1 binaries - add easy start scripts
1 parent 0094852 commit 8d1fa2b

File tree

5 files changed

+67
-0
lines changed

5 files changed

+67
-0
lines changed

README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,19 @@ The source code for the binaries can be found under [https://github.com/xmrMiner
1717

1818
If *xmrMiner* found **no device**, please try to install the latest CUDA driver from [this](https://developer.nvidia.com/cuda-downloads) side.
1919

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+
2033
# Performance
2134

2235
please read the [original document](https://github.com/xmrMiner/xmrMiner/blob/master/README.md)
Binary file not shown.
Binary file not shown.

xmrMiner_0.2.0_dyn_easyStart.bat

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
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

xmrMiner_0.2.0_easyStart.bat

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
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

0 commit comments

Comments
 (0)