Bitcoin Forum
June 21, 2024, 11:52:38 AM *
News: Voting for pizza day contest
 
   Home   Help Search Login Register More  
Pages: « 1 ... 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 [218] 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 ... 294 »
  Print  
Author Topic: EWBF's CUDA Zcash miner  (Read 2164087 times)
duffann
Full Member
***
Offline Offline

Activity: 178
Merit: 102


View Profile
August 23, 2017, 11:33:19 AM
 #4341

anyone knows why ccminer 2.2 not working with zcash altough it now supports equihash ?
scryptr
Legendary
*
Offline Offline

Activity: 1796
Merit: 1028



View Profile WWW
August 23, 2017, 11:40:24 AM
 #4342

anyone knows why ccminer 2.2 not working with zcash altough it now supports equihash ?

CCMINER v2.2 WORKS ON YIIMP STRATUM--

The stratum implementation for Equihash varies per pool.  CCminer is coded for YIIMP stratum, and is not fully compatible with all pools.

As far as I know, other support is planned, but not in place.       --scryptr

TIPS:  BTC - 1Fs4uZ6a9ABYBTaHGUfqcwCQmeBRxkKRQT    DASH - XrK81tW31SLsVvZ2WX9VhTjpT6GXJPLdbQ
          SCRYPTR'S NOTEBOOK: https://bitcointalk.org/index.php?topic=5035515.msg46035530#msg46035530
          GITHUB: "github.com/scryptr"  MERIT is appreciated, also.  Thanks!
astronyu
Member
**
Offline Offline

Activity: 91
Merit: 10


View Profile
August 23, 2017, 11:42:01 AM
 #4343

Does anyone have luck using EWBF with Slushpool? Can you share your settings? I've been trying without any luck so far.
duffann
Full Member
***
Offline Offline

Activity: 178
Merit: 102


View Profile
August 23, 2017, 11:55:24 AM
 #4344

Thanks Scryptr
SergGT001
Newbie
*
Offline Offline

Activity: 29
Merit: 0


View Profile
August 23, 2017, 01:18:08 PM
 #4345

How do you enable the startup of the miner in Linux?
scryptr
Legendary
*
Offline Offline

Activity: 1796
Merit: 1028



View Profile WWW
August 23, 2017, 02:51:05 PM
 #4346

How do you enable the startup of the miner in Linux?

USE A STARTUP BASH SCRIPT--

Schedule a startup BASH script to run.  There are detailed instructions for a "start.sh" script at the following link:

STARTUP SCRIPT HOW-TO-  https://github.com/OpenLabTools/OpenLabTools/wiki/Launching-bash-scripts-at-startup

Just take the time to read, and cook your own "start.sh".


My startup script reads something like this:

=====start script=====

!# /bin/bash
./cpuminer.sh
./gpuminer.sh

=====start script=====

My cpuminer and gpuminer scripts are tested and proven to work.  They include full path statements to the miner directory, and all environmental variables that may be required.  The start script itself does not include the dashed "cut lines" above, of course.

Depending on your system, it may be more or less complicated.  The link above should provide enough information so that you can code your own script in your personal Linux rig.  In ethOS, I start my CPU miner with "custom.sh", which is hard-coded by the system to run immediately after system boot.  The ethOS mining OS does not officially support CPU mining, and must be modified to run a CPU miner.  However, it launches your choice of GPU miner automatically according to your configuration file.  It also monitors mining statistics and reports them to a website.  Custom drivers and utilities are included in the ethOS operating system, which is currently in release v1.2.3.

The developers work hard to keep an up-to-date mining environment.

--scryptr


TIPS:  BTC - 1Fs4uZ6a9ABYBTaHGUfqcwCQmeBRxkKRQT    DASH - XrK81tW31SLsVvZ2WX9VhTjpT6GXJPLdbQ
          SCRYPTR'S NOTEBOOK: https://bitcointalk.org/index.php?topic=5035515.msg46035530#msg46035530
          GITHUB: "github.com/scryptr"  MERIT is appreciated, also.  Thanks!
keno1234
Newbie
*
Offline Offline

Activity: 15
Merit: 0


View Profile
August 23, 2017, 04:08:20 PM
 #4347

Hi, thank you very much for the awesome miner.


I have GTX1050ti 8 cards and GTX1070 1 card in a rig. The 1070 is GPU 4 in Linux, however in EWBF's terminal the 1070 becomes GPU 0.
Is there any way to set order of GPUs to be as same as the order in Linux?

(In this case, I would like it to be:

CUDA: DEVICE : 0 GeForce GTX 1050ti
CUDA: DEVICE : 1 GeForce GTX 1050ti
CUDA: DEVICE : 2 GeForce GTX 1050ti
CUDA: DEVICE : 3 GeForce GTX 1050ti
CUDA: DEVICE : 4 GeForce GTX 1070
CUDA: DEVICE : 5 GeForce GTX 1050ti
CUDA: DEVICE : 6 GeForce GTX 1050ti
CUDA: DEVICE : 7 GeForce GTX 1050ti
CUDA: DEVICE : 8 GeForce GTX 1050ti

)

Thank you.
SergGT001
Newbie
*
Offline Offline

Activity: 29
Merit: 0


View Profile
August 23, 2017, 04:23:39 PM
 #4348

How do you enable the startup of the miner in Linux?

USE A STARTUP BASH SCRIPT--

Schedule a startup BASH script to run.  There are detailed instructions for a "start.sh" script at the following link:

STARTUP SCRIPT HOW-TO-  https://github.com/OpenLabTools/OpenLabTools/wiki/Launching-bash-scripts-at-startup

Just take the time to read, and cook your own "start.sh".


My startup script reads something like this:

=====start script=====

!# /bin/bash
./cpuminer.sh
./gpuminer.sh

=====start script=====

My cpuminer and gpuminer scripts are tested and proven to work.  They include full path statements to the miner directory, and all environmental variables that may be required.  The start script itself does not include the dashed "cut lines" above, of course.

Depending on your system, it may be more or less complicated.  The link above should provide enough information so that you can code your own script in your personal Linux rig.  In ethOS, I start my CPU miner with "custom.sh", which is hard-coded by the system to run immediately after system boot.  The ethOS mining OS does not officially support CPU mining, and must be modified to run a CPU miner.  However, it launches your choice of GPU miner automatically according to your configuration file.  It also monitors mining statistics and reports them to a website.  Custom drivers and utilities are included in the ethOS operating system, which is currently in release v1.2.3.

The developers work hard to keep an up-to-date mining environment.

--scryptr



I added the startup script to /etc/rc.local string /home/user/zecminer/start.sh but autorun on reboot does not happen. And I tried to create autorun scripts according to the ubuntu standard, but it did not work either. What am I doing wrong?
scryptr
Legendary
*
Offline Offline

Activity: 1796
Merit: 1028



View Profile WWW
August 23, 2017, 05:36:01 PM
Last edit: August 23, 2017, 09:21:27 PM by scryptr
 #4349


<BIG SNIP>

I added the startup script to /etc/rc.local string /home/user/zecminer/start.sh but autorun on reboot does not happen. And I tried to create autorun scripts according to the ubuntu standard, but it did not work either. What am I doing wrong?

MAKE SURE THAT YOU TEST THE INDIVIDUAL MINER SCRIPTS FIRST--

Full paths with no typos are required.  I mined on Lubuntu prior to using ethOS, and had to compose my own scripts.  Getting them to run right was sometimes a pain, and simple typos were often the reason for failure.  Also, be sure to make all scripts executable with the command "chmod +x script.sh", or Linux will just see the script as a text file.  My personal scripts were written and stored in the home directory, "/home/username/script.sh".

It is also possible to call a startup script from cron.       --scryptr

EDIT:   CRYPTOBADGER IS ALIVE AND WELL--

CryptoBadger is a mining guru that has tutorials on how to build and run Linux and Windows mining rigs.  His tutorials date to the early LiteCoin era.  Many miners have built rigs using his guides.

In short, on his site (www.cryptobadger.com), there are cryptomining guides.  Look up his latest guide to build an Ethereum rig.  In part 2 (Linux), step 7, he describes auto-start scripts.  Follow his lead.       --scryptr
 

TIPS:  BTC - 1Fs4uZ6a9ABYBTaHGUfqcwCQmeBRxkKRQT    DASH - XrK81tW31SLsVvZ2WX9VhTjpT6GXJPLdbQ
          SCRYPTR'S NOTEBOOK: https://bitcointalk.org/index.php?topic=5035515.msg46035530#msg46035530
          GITHUB: "github.com/scryptr"  MERIT is appreciated, also.  Thanks!
sergen34
Sr. Member
****
Offline Offline

Activity: 449
Merit: 250


View Profile
August 23, 2017, 10:06:17 PM
 #4350

Hello! I have a problem. My problem, Miner program locked screen on Windows. While i opening EWBF and this program locked. I have GTX 1080 graphics card. Sometimes i seen error codes; 30, 46. Please help me. I didn't mining ZCash. LBRY or another altcoins don't problem and working.

And, my motherboard BIOS updated, drivers OK, PSU's OK. It had worked before.

My motherboards: Asus Z270E and Gigabyte.
Acrefawn
Member
**
Offline Offline

Activity: 118
Merit: 13

FarmWatchBot script Developer


View Profile WWW
August 23, 2017, 10:37:07 PM
 #4351

Hello guys!  Wink

Hey guys, check this out! https://bitcointalk.org/index.php?topic=2071108.0  Beautifull work, just beautifull.

Thank you for your support! It is important for me.

'' Zcash Miner Autorun for EWBF ''
@EWBF: Can you confirm Acrefawn autorun is on your behalf?

It is my own program, CMD/BATCH, opensource, no fee, just read instruction, copy-paste code to a .bat file and use it for free.
I`m bored to wake up and see that my rig still offline for some hours, I think you too... And like many who on this forum. So I just do that.
If any problems, questions, etc - feel free to contact me.
I leave donation adress in my post, if somewho wants to support me.
Thank you for attention!

Is not EWBF.
Is Acrefawn own work - and deal with some bugs in EWBF miner, also enhances miner with extras.
Safe to use and best possible at this time (until EWBF fix bugs, or enhance its miner).

Thank you!

Links
My program on bitcointalk
My program on forum.z.cash

FarmWatchBot script Developer
BlackthorneFounder
Newbie
*
Offline Offline

Activity: 11
Merit: 0


View Profile
August 24, 2017, 04:32:15 AM
 #4352

Hi guys,

trying to mine Zcl using EWBF on suprnova. Miner seems to be working but my results never show up in the dashboard. My .bat file looks like this: miner --server zec.suprnova.cc --user Blackthorne.Blackthorne1  --pass x --port 2142 am I missing something?
ESJai
Full Member
***
Offline Offline

Activity: 131
Merit: 100

I Mine Anything and Everything!


View Profile
August 24, 2017, 06:08:02 AM
 #4353

Hi guys,

trying to mine Zcl using EWBF on suprnova. Miner seems to be working but my results never show up in the dashboard. My .bat file looks like this: miner --server zec.suprnova.cc --user Blackthorne.Blackthorne1  --pass x --port 2142 am I missing something?

seems like you pointed to a zcash(zec) pool instead of a zcl pool
BlackthorneFounder
Newbie
*
Offline Offline

Activity: 11
Merit: 0


View Profile
August 24, 2017, 07:40:32 AM
 #4354


seems like you pointed to a zcash(zec) pool instead of a zcl pool
[/quote]

Thanks, is there a way to configure this for ZCL instead of zec?
joshuaj
Full Member
***
Offline Offline

Activity: 224
Merit: 100


IDEX - LIVE Real-time DEX


View Profile
August 24, 2017, 08:15:18 AM
 #4355


seems like you pointed to a zcash(zec) pool instead of a zcl pool

Thanks, is there a way to configure this for ZCL instead of zec?

[/quote]

Configuration should be similar to ZEC because both use same algo. So you just need to change the pointing server address and port will do.

a4si
Newbie
*
Offline Offline

Activity: 31
Merit: 0


View Profile
August 24, 2017, 01:12:30 PM
 #4356

you need to put ZCL in server addres:

stratum+tcp://zcl.suprnova.cc:4042


Dedicated Nicehash Port: zcl.suprnova.cc:4043
ASIA Stratum Node: zcl-apac.suprnova.cc:4042
China/Shenzhen! stratum+tcp://zcl-cn.suprnova.cc:4042
SSL Port (Claymore 9): ssl://zcl.suprnova.cc:4142
Special Port for CCMiner added: stratum+tcp://zcl.suprnova.cc:4044
a4si
Newbie
*
Offline Offline

Activity: 31
Merit: 0


View Profile
August 24, 2017, 01:33:19 PM
 #4357

Otherwise just always go to main page https://suprnova.cc/, chose the coin you wish to mine, click start mining and on next page you will have on top all the instructions on how to mine/how to set up miner.
pikatju
Full Member
***
Offline Offline

Activity: 336
Merit: 100


https://wallet.merit.me/?invite=Pikachu


View Profile
August 25, 2017, 05:26:12 AM
 #4358

Hi I would like to use the api to check my miner from overseas.
I have no idea how to do this. How do I get started? Is there a tutorial somewhere?

Cheers
Pikatju

Vann
Hero Member
*****
Offline Offline

Activity: 1036
Merit: 606



View Profile
August 25, 2017, 05:38:39 AM
Last edit: August 25, 2017, 05:58:25 AM by Vann
 #4359

Hi I would like to use the api to check my miner from overseas.
I have no idea how to do this. How do I get started? Is there a tutorial somewhere?

Cheers
Pikatju

You would need to forward the miner api port in your router to same port on your rig local IP. Then use your rigs external IP instead of the LAN IP to connect to api from outside your LAN. You also may need to allow the port in the firewall on your rig to external addresses.
Nokia555
Sr. Member
****
Offline Offline

Activity: 392
Merit: 266

EthMonitoring.com


View Profile WWW
August 26, 2017, 08:56:26 AM
 #4360

I added support for EWBF auto-restart when getting 0 sol/s error aka GPU error.

https://github.com/JamesSmith2/EthControl/releases/
(https://ethmonitoring.com)

Pages: « 1 ... 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 [218] 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 ... 294 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!