Bitcoin Forum
April 30, 2024, 04:53:34 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 [52] 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 ... 105 »
1021  Alternate cryptocurrencies / Mining (Altcoins) / Re: Bitmain L3+ Voltage Control Tool...Free :) on: May 05, 2018, 07:29:15 AM
Very nice. So could we then turn down the voltage and boost the freq to get more hashing power at 800 watts then supplied by Bitmain? If the units voltage is high to start might be a bit of tuning between the voltage and freq. I assume the unit locks up if the freq is adjusted top high while under voltage.



It wont lock up...ASICs are dumb and they will just keep hashing but return bad data...thats what HW errors are. You want to tune it so HW errors are to minimum (ie under 1 a min or so).
1022  Alternate cryptocurrencies / Mining (Altcoins) / Re: Bitmain L3+ Voltage Control Tool...Free :) on: May 05, 2018, 12:48:31 AM
Let's see how it goes ...

Code:
root@L3no01:/config# chmod a+x set_voltage
root@L3no01:/config# ./set_voltage 1 90

 version = 0x03
reading voltage

 voltage = 0x80
setting voltage
reading voltage

 voltage = 0x90
Success: Voltage updated!
root@L3no01:/config#

Looks good! Don't forget you need to do the same for the rest of the boards.
1023  Alternate cryptocurrencies / Mining (Altcoins) / Re: Bitmain L3+ Voltage Control Tool...Free :) on: May 05, 2018, 12:46:25 AM
No access at my hosting location.  They have it locked down.  So I basically have to manage my miners through Mining Rig Rentals.  So in my case it would have to be something more or less "default" so that the technicians would be able to set it and forget it it kind of thing. 

If you want to play it safe, start off with 0xa0 undervolt. That should give most boards no issue at stock frequency, and still get a noticeable reduction in power. So you can't even see the web interface on your miners?
1024  Alternate cryptocurrencies / Mining (Altcoins) / Re: Bitmain L3+ Voltage Control Tool...Free :) on: May 05, 2018, 12:23:46 AM
jstefanop,

What is the hash rate at that lowest speed?  I am just trying to think how to make this simple enough that a hosting location would be willing, able to update miners.  Thoughts?  Thanks for working on this.  I think the L3+ needs some help if coin prices don't get a pump.

Longsnowsm


Its the stock frequency so 500 MH/s. Keep in mind that not all hashboards will work at the lowest voltage setting on stock frequency, so you might have to undervolt some boards less. If you have your miners hosted, you should just be able to SSH into them and under volt them yourself?
1025  Alternate cryptocurrencies / Mining (Altcoins) / Re: Launching the Antminer L3+, World's Most Powerful and Efficient Litecoin Miner on: May 04, 2018, 10:48:36 PM
For anyone running stock firmware, or not wanting to pay a 2% free forever on a simple mod, below is my tool to change L3+ voltage for free Smiley

Its simple to use but requires basic use of ssh and command line. More info in the thread here: https://bitcointalk.org/index.php?topic=3546316.0

Since most boards come with ridiculously high voltage for the stock frequency (so bitmain can sell us stuff like L3++),  you can reduce the voltage to the lowest setting on most boards, which brings down power consumption from 800 watts to about ~650 per miner.
1026  Alternate cryptocurrencies / Mining (Altcoins) / Bitmain L3+ Voltage Control Tool...Free :) on: May 04, 2018, 10:33:38 PM
So certain members of this forum think its cool to rip off GPL code then do simple mods and profit greatly off it without releasing the code after having plenty of time to do so, therefore I decided to release a simple binary that does the most important function for free on the stock L3+ firmware Wink Figured lots of L3+ users would appreciate this with low profits and summer incoming.

My tests show that most boards will run on stock frequency (384) at the lowest voltage setting (0xfe) reliably at about 160 watts per board at the wall.

Source and release binary are here: https://github.com/jstefanop/bitmain-tools

This binary allows you to easily modify voltages on a per board bases for L3+ miners. It *should* work on all L3+ boards as long as they have the proper PIC version, If the binary complains about a wrong PIC version let me know (it wont do anything unless your board has the version I have tested on).

USAGE:

Since this need to be run directly from the miner console, below is my attempt at a user friendly instructions for people not familiar with the command line:

Download the release binary on GitHub and copy it over to your antminer:

Code:
scp [Directory you downloaded tool]/set_voltage root@[your miners ip]:/config

ssh into your miner and cd to config folder (this is the only folder that is saved on reboot on antminers so we saved the binary here).

Code:
ssh root@[your miners ip]
cd /config

binary accepts two inputs in the format of:

Code:
./set_voltage [chain# 1-4] [voltage in hex]

bitmains voltage controller can be configured to change the 12v input roughly +/- 1v from 10v, and this is configurable via a hex range of 0x00-0xfe, with the default being set to the middle (0x80). Higher hex values (0x80-0xfe) will LOWER voltage, lower values (0x00-0x7f) will INCREASE voltage from the default.

If your not familiar with hex numbering, all you need to know is that they range from 0-9, then a-f

For example if you want to slightly decrease your voltage on chain #1 you would input:

Code:
./set_voltage 1 90

increments of 0x10 are good starting point to test a sweet spot for each board for a particular frequency. Lowering voltage until you get around 1 HW error per minute is usually a good reference “sweet spot.”

So lower voltages from stock in increments of 0x10 are 90, A0, B0, C0, D0, E0, F0 and higher are 0x70, 0x60, 0x50 etc. If you want slightly higher resolution just go increments of 0x08, so lowering voltage in lower increments would look like 0x88, 0x90, 0x98, 0xA0, 0xA8, 0xB0 etc.

The tool directly writes the voltages to the pic controllers memory, so all changes are saved even on reboot and power down. If you want to set everything back to stock, you have to set the stock voltage for each chain using:

Code:
./set_voltage 1 80
./set_voltage 2 80
./set_voltage 3 80
./set_voltage 4 80

Enjoy! Keep in mind that the "other" solution has take a good few bucks or so a month of profit per L3 miner, so while I like helping out the community when I can especially in cases like this, please consider donating a few dollars per L3 if you end up using this tool, especially if you guys want me to work on similar tools or release more free stuff (like the auto voltage tuner I'm working on)  Tongue

LTC: LQZpb8AqbggUmsdPKr28DzdNcRP7MJ8kEf
BTC: 1LeA29mLjTFCyB5J6Yiq4TFtAck2VDPUZf


DISCLAMER: While the tool has basic error checking its not idiot proof, so be careful especially when overvolting. IM NOT RESPONSIBLE IF YOU FRY YOUR BOARD.
1027  Alternate cryptocurrencies / Mining (Altcoins) / Re: Bitmain launches the Z9 Equihash miner on: May 04, 2018, 07:55:12 PM
something is just odd about this. let me elaborate.

the E3 is priced at 2000-2400. it mines like a 6 card rig and costs about the same as one

this new z9 is like 12 grand in GPUs but only priced at 2k? if bitmain sold 12k in gpu's they would be asking at least 9-10k for it

sooo what gives? are they just expecting a fork? at current this thing is what? a 45 day ROI which is something i have never seen since i have been in crypto. did this ever exist years back?

the price to performance just seems out of line

sigh...why do people never learn. Bitmain is not pricing this based on what a single unit on the current network could mine, nor should you ever figure out your earnings on any new miner based on that.

As a rule of thumb, take bitmains X new miner, multiply the hashrate by 10,000 units (which is their typical batch size), add that hashrate to the current network and assume thats what you will be earning on day 1.

1028  Alternate cryptocurrencies / Mining (Altcoins) / Re: DIY FPGA Mining rig for any algorithm with fast ROI on: May 03, 2018, 08:03:08 PM
If this doomsday device is what the OP suggests.  I don't see how GPUs are going to survive this.  If the ASIC is a 10 kiloton hiroshima style weapon.  This is a 10 megaton hydrogen bomb.  And it's going to get dropped right on your GPU rig.

I wet the bed last night after reading this thread.   Wink Cheesy

This CPU/GPU/FPGA/ASIC cycle has happened 2-3 times over as some people have pointed out. Except this last cycle everyone forgot about FPGAs because there were more "nerds" back in the early bitcoin days. Making an algorithm FPGA "resistant" is probably easier than ASIC "resistant", and new algorithms will come out with new coins and the cycle repeats ;P

Looks like people re-discovered FPGAs this round again since the large ASIC companies have been going straight from GPU->ASIC while ignoring the smaller algorithms.

Id be careful in buying these "dev" boards though. They cost 5k because they are not meant for consumers. I could probably build a board with with these xilinix FPGA's for under 2k (and looked into it and been approached about it in the past), and that are designed for crypto in mind.

Either way its the same deal as ASICs...of course you'll make 300 bucks a day when there are 5 people mining FPGAs on a coin....as soon as 50 people jump on its 30 bucks a day...


Yes I know, people started mining Bitcoin with these FPGA and then suddenly ASIC came and people forgot about them. But now ASICs being released for all of the algos, I think gpu mining has finally come to an end and FPGA will live for a little longer (if it works). I think either NVidia or Amd should release new dedicated mining gpu or we need some revolutionary new algo for gpus. Also can you elaborate how do you make algo FPGA resistant but at the same time it won't be resistant to gpus. I know little bit about FPGAs, my friends owns some spartans and vertix 7.


Nothing is resistant...it all comes down to economics. With FPGAs your limited with the number of programable gates the silicon has. The more complicated the algorithm the less "cores" you can fit on the die. If someone wanted to create a GPU algorithm that was not as economical on an FPGA, you would make it so each round requires a ridiculous amount of instructions, or have the coin use a large amount of different algorithms which take up precious FPGA space. You then take the advantage away from FPGAs because 1) it would require alot more effort and time to program the FPGA, and 2) you can't fit as many cores on it, so the instead of it being 10x as fast as a GPU, you can only get away with 2-3x with maybe a slight increase in efficiency.
1029  Alternate cryptocurrencies / Mining (Altcoins) / Re: DIY FPGA Mining rig for any algorithm with fast ROI on: May 03, 2018, 06:49:04 PM
If this doomsday device is what the OP suggests.  I don't see how GPUs are going to survive this.  If the ASIC is a 10 kiloton hiroshima style weapon.  This is a 10 megaton hydrogen bomb.  And it's going to get dropped right on your GPU rig.

I wet the bed last night after reading this thread.   Wink Cheesy

This CPU/GPU/FPGA/ASIC cycle has happened 2-3 times over as some people have pointed out. Except this last cycle everyone forgot about FPGAs because there were more "nerds" back in the early bitcoin days. Making an algorithm FPGA "resistant" is probably easier than ASIC "resistant", and new algorithms will come out with new coins and the cycle repeats ;P

Looks like people re-discovered FPGAs this round again since the large ASIC companies have been going straight from GPU->ASIC while ignoring the smaller algorithms.

Id be careful in buying these "dev" boards though. They cost 5k because they are not meant for consumers. I could probably build a board with with these xilinix FPGA's for under 2k (and looked into it and been approached about it in the past), and that are designed for crypto in mind.

Either way its the same deal as ASICs...of course you'll make 300 bucks a day when there are 5 people mining FPGAs on a coin....as soon as 50 people jump on its 30 bucks a day...

1030  Alternate cryptocurrencies / Mining (Altcoins) / Re: Official FutureBit Moonlander 2 Driver and Support Thread on: May 03, 2018, 05:38:57 PM
I have a fried Moonlander 2. This one was working perfectly on one of my computers for weeks,  and I moved it to another computer that was in a more favorable location. Set up the computer the same way, Windows 7, standard software (bfgminer, etc). However, when I plugged it in, and the fan worked fine, and then I smelled the familiar smell of smoked electronic components. Looks like U2 on the board is fried with a black smoldered hole  in the middle of it.

What is the component? What could have caused this? Is this ML2 repairable, or is it a lost cause? My other 2 ML2's are working great, but am scared to move them in the event this same thing happens.

Any guidance would be great.

Thanks!


Hmm thats not good. U2 is the memory voltage controller. Sounds like something shorted or overheated. Were you running higher clocks? If only the controller blew the repair would be relatively easy and its a 50 cent component if your good with removing/soldering SMDs. If your in the US and don't mind sending it in shoot me a PM...catastrophic failures like this are super rare so they are good dissecting cases.

No, I was running straight defaults at 600 clock speed on litecoinpool.org with 128 difficulty. I am in the US, and will send you a PM. Thanks!



Is there something wroung with the USB port on your computer?

No, I have been running two other miners and no problem with that port. Only thing I can think of is that a surge took it out.  Are there any other components before the voltage controller from the initial usb connection on that circuit? Jstefanop, I sent you a PM a couple of days ago, but I am not sure if you got it. Thanks!

Sent you a PM.
1031  Alternate cryptocurrencies / Mining (Altcoins) / Re: Official FutureBit Moonlander 2 Driver and Support Thread on: April 30, 2018, 06:30:16 PM
I'm looking to update my raspberry pi from 5.4.2-34 to 5.4.2-38 for the auto restart. Has the GitHub armv6 download link been updated to the newest version? It still installs ver. 5.4.2-34.

thanks!


Maybe that's why bfgminer on my pi will not auto restart. My bfgminer comes up with 5.4.2-34, not 5.4.2-38 when following the instructions from page 1

hmmm, the beta 2 link for armv6 shows build 34? Ill check it and update it. Ill be building new version with latest updates soon anyway.
1032  Alternate cryptocurrencies / Mining (Altcoins) / Re: Best place to point 12GH/s of Scrypt hash? on: April 27, 2018, 05:34:21 PM
Yes point it to my pool in the sig  Grin
1033  Alternate cryptocurrencies / Mining (Altcoins) / Re: NEW Bitmain Antminer L3++ 596 MH RELEASE MAY on: April 27, 2018, 05:30:11 PM
This is not new or news...its just an overclocked L3+...
1034  Economy / Computer hardware / [WTB] Single L3+ hashboard and controller on: April 25, 2018, 05:54:20 PM
I need a single L3+ hashboard, and a controller. I can take your bad boards as well as long as they are semi-working (high errors, dead chips etc).
1035  Alternate cryptocurrencies / Mining (Altcoins) / Re: Official FutureBit Moonlander 2 Driver and Support Thread on: April 25, 2018, 04:22:22 PM
I have a fried Moonlander 2. This one was working perfectly on one of my computers for weeks,  and I moved it to another computer that was in a more favorable location. Set up the computer the same way, Windows 7, standard software (bfgminer, etc). However, when I plugged it in, and the fan worked fine, and then I smelled the familiar smell of smoked electronic components. Looks like U2 on the board is fried with a black smoldered hole  in the middle of it.

What is the component? What could have caused this? Is this ML2 repairable, or is it a lost cause? My other 2 ML2's are working great, but am scared to move them in the event this same thing happens.

Any guidance would be great.

Thanks!


Hmm thats not good. U2 is the memory voltage controller. Sounds like something shorted or overheated. Were you running higher clocks? If only the controller blew the repair would be relatively easy and its a 50 cent component if your good with removing/soldering SMDs. If your in the US and don't mind sending it in shoot me a PM...catastrophic failures like this are super rare so they are good dissecting cases.
1036  Alternate cryptocurrencies / Mining (Altcoins) / Re: Official FutureBit Moonlander 2 Driver and Support Thread on: April 25, 2018, 04:16:51 PM
Code:
bfgminer.exe --scrypt -o stratum+tcp://eu.multipool.us:3351 -u Moonlander2.1 -p x,d=256  -S MLD:all --set MLD:clock=796
pause

Ok so i have it running on litecoinpool and on multipool. Works but i run into the same error. After a while it just stops hashing. If i restart bfg then it works like a champ again.
So can someone help me. Is there a way to set bfgminer up to auto restart after an hour. yea I know its not perfect but at this point i just want the dang thing to run nearly 24 hours. I hate waking up to find it pooped out after 30 minutes and sat idle 6 hours. Is there a way to add a piece to this scrypt that will make it auto restart after an hour? Since I have no clue why it keeps stopping. And before we trouble shoot again just assume its all running on the right stuff. yes powered hub. yes 100mbps connection which is stable. Yes way more than adequate cooling. This thing will run 30 minutes and stop or 32 hours and stop. No rhyme or reason i see. If there is a code to auto restart after an hour that would be gold.  Any help?

Any ideas?

This depends on whats going on with your setup. First are you running the latest bfgminer binaries I release that have auto-restart built into the miner? Sounds like your not since restarting bfgminer pretty much does what I already do in the new driver release automatically.

i have 5.4.2. isnt that the newest one? i see no restart timer


You should see 5.4.2-38 at the top if your running the latest version.
1037  Alternate cryptocurrencies / Mining (Altcoins) / Re: Official FutureBit Moonlander 2 Driver and Support Thread on: April 24, 2018, 05:51:22 PM
Code:
bfgminer.exe --scrypt -o stratum+tcp://eu.multipool.us:3351 -u Moonlander2.1 -p x,d=256  -S MLD:all --set MLD:clock=796
pause

Ok so i have it running on litecoinpool and on multipool. Works but i run into the same error. After a while it just stops hashing. If i restart bfg then it works like a champ again.
So can someone help me. Is there a way to set bfgminer up to auto restart after an hour. yea I know its not perfect but at this point i just want the dang thing to run nearly 24 hours. I hate waking up to find it pooped out after 30 minutes and sat idle 6 hours. Is there a way to add a piece to this scrypt that will make it auto restart after an hour? Since I have no clue why it keeps stopping. And before we trouble shoot again just assume its all running on the right stuff. yes powered hub. yes 100mbps connection which is stable. Yes way more than adequate cooling. This thing will run 30 minutes and stop or 32 hours and stop. No rhyme or reason i see. If there is a code to auto restart after an hour that would be gold.  Any help?

Any ideas?

This depends on whats going on with your setup. First are you running the latest bfgminer binaries I release that have auto-restart built into the miner? Sounds like your not since restarting bfgminer pretty much does what I already do in the new driver release automatically.
1038  Alternate cryptocurrencies / Mining (Altcoins) / Re: Bitmain Launches the New Antminer B3 Miner on: April 24, 2018, 05:45:50 PM
Haha wow, not only is Bitmain pumping out ASICs for every algorithm out there, they are now also CREATING coins that they can sell ASICs to in the future.
1039  Alternate cryptocurrencies / Mining (Altcoins) / Re: Official FutureBit Moonlander 2 Driver and Support Thread on: April 23, 2018, 04:58:57 PM
THIS IS THE SUPPORT THREAD: Keep this thread on topic!

.....

BFGMINER 5.4.2 Instructions

I have built a native bfgminer driver binaries with support all major systems and architectures. Please follow the GitHub release link below, which has binaries for each system attached.

bfgminer download: https://github.com/jstefanop/bfgminer/releases/tag/bfgminer-5.4.2-futurebit2-beta2

You will also need to install the latest version of Silicon Labs VPC drivers for Win/Mac OS link below. If you downloaded this driver below, make sure you update to the latest version, as the Moonlander 2 uses a new UART chip and the old driver will not work will with it.

UART VPC Driver: https://www.silabs.com/products/development-tools/software/usb-to-uart-bridge-vcp-drivers

MAC OS 10.13 HIGH SIERRA USERS: Sililabs drivers will NOT work with the newest version of OS X, and you cannot run the stick with this version until Sililabs provides a driver update! EDIT: Workaround here https://bitcointalk.org/index.php?topic=2420357.msg25153407#msg25153407

Once you have installed the drivers and extracted bfgminer binary for your system just plug in the miner to a USB port and double click on the Start_Moonlander2 file on your Mac/PC. The driver will auto-detect the board and start hashing at the default frequency (for linux you need to execute the .sh file in terminal with sudo command i.e. sudo start_moonlander2.sh).

Just edit that same file with a text editor to change pools, add bfgminer options, and change frequency. You can also use the -c flag and load it with your own config file.

......


Hello Jstefanop,
I need to run my Moonlanders by a live 32bit Linux running on an old Pentium III based PC, yes, very old.
This old PC has not a HD, it boots from a memory stick. It is a live distribution but it is persistent so I can install software and it will be saved as it was with an HD.

CGminer for other ASICs (Gridseed) worked very well but here I see there is not a 32 bit BFGminer 5.4.2

How can I set it up?
Should I compile it from source files?


I only pre-compile 32bit version for windows. Linux you would have to do a native compile on your system. Its very easy for linux, and you can actually use that install scrypt posted above by one of the community members. Its designed for Pi's, but should work fine for your linux system as well.
1040  Alternate cryptocurrencies / Mining (Altcoins) / Re: Official FutureBit Moonlander 2 Driver and Support Thread on: April 20, 2018, 05:05:28 PM
I ordered 2 Moonlander 2 and have them hashing. The problem is that no matter what I do one of the sticks have an error rate of 5-10%. I've tried modifying clock settings, different USB ports, different computers, powered USB hubs, etc.

One stick is <.5% error rate and the other is 5-10% consistently. I've gone as low at 600MHz and as high as 796 each with similar results.

I've purchased directly from the developer on eBay. Not sure if I have a defective unit or I need to tweak the pots maybe?

Interested to hear any ideas on how to troubleshoot this.

Try raising the memory and core voltage. Also some units do show higher error rate, but does not actually affect the hashrate (i.e. the uart controller sometimes spits out garbage, but all the "real" shares still come out properly). Are you also seeing a corresponding 5-10% drop in hashrate?

So the plot thickens (well not really... I think I just have a bad device).

These devices shipped with the following voltages Core: 0.714VDC  Mem: 0.771VDC. I changed them to their supposed defaults listed in the first post and was able to get it to Core: 0.751  Mem: 0.854. Now the error rate is consistent with the other 2 devices, except I constantly get these errors after a few hours:

[2018-02-03 10:45:24] FutureBit Write error: Permission denied
[2018-02-03 10:45:24] MLD 1: ASIC has stopped hashing, attempting to restart
[2018-02-03 10:45:24] FutureBit Write error: Permission denied

I've dropped the frequency from 756 (where the others are running happily) to 600 and all steps in between. I've been troubleshooting this for days and keep ending with the same result no matter which USB port or hub I use. I've run this thing solo, with the other two, basically every combination I've tried gets these errors.

Not sure what else to try at this point.

what hub and what pc or rasp pi?

I want to stress  that my setup is at 832  and just runs and runs and runs and runs


https://www.youtube.com/watch?v=d3rqTUNt5XI

I am having the same issue, was there ever a solution?

Code:
[2018-02-03 10:45:24] FutureBit Write error: Permission denied

This error is because the miner temporarily lost contact with the USB port, this happens on cheaper hubs...especially if you have the sticks vertical mounted. The vibrations from the fans can cause the port to lose contact with the pins inside the USB connector. Unfortunately a USB disconnect is not recoverable and it would need to be unplugged/replugged.
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 [52] 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 ... 105 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!