Bitcoin Forum
June 26, 2024, 11:11:05 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 [363] 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 ... 750 »
7241  Other / Beginners & Help / Re: Arbitrary address on: August 23, 2015, 05:31:55 PM
Speed comparison:

Just to get back to the performance bit of non-ocl vanitygen (standard v0.22 lifeboat version), some figures (applicable to the i7-4702MQ 2.2GHz config).

Ran each test for 5 minutes.  Relative efficiency is based only on the number of 'found' keys in that timespan.
typecommand
generated keys
'found' keys
% matched
relative efficiency
regexvanitygen.exe -o file.lst -k -q -F compressed -r .*
21,262,638
82,797
0.38940%
98.72%
standardvanitygen.exe -o file.lst -k -q -F compressed 1
21,534,544
83,874
0.38949%
100.00%
input list
(1A,1B,..,1a,1b,..,11,12,..)
vanitygen.exe -o file.lst -k -q -F compressed -f input.lst
21,688,744
84,499
0.38960%
100.75%
case insensitivevanitygen.exe -o file.lst -k -q -F compressed -i 1
21,917,217
85,410
0.38969%
101.83%
non-compressedvanitygen.exe -o file.lst -k -q 1
22,324,562
87,019
0.38979%
103.75%
64-bit versionvanitygen64.exe -o file.lst -k -q -F compressed 1
27,455,567
106,980
0.38965%
127.55%
64-bit, non-compressedvanitygen64.exe -o file.lst -k -q 1
29,042,542
113,150
0.38960%
134.90%
64-bit, non-compressed, four processesvanitygen64.exe -o file.lst -k -q 1
104,220,011
406,105
0.38966%
484.18%

Using compressed keys adds a few percent overhead, so dropping that might be a reasonable idea (remember though that 'compressed keys' are preferred).  The 64bit version is quite a bit faster than the 32bit version as well.  Combining the two there's a pretty reasonable speed gain.  There's maybe a bit more to gain with the case-insensitive option, but I'd have to run much longer tests to see if that's a real gain or just a wee bit of luck in that run.
Running four concurrent processes was much faster still - apparently there's a good bit of overhead of code that doesn't/can't be run multithreaded when using such short prefixes.

The other thing that stands out is that even though there's a significant number of keys generated, vanitygen only selects a very, very small portion of them as matches - even though every single one of them should be valid.  This is primarily why a program that's specifically written for the task would be much better.  In fact, given how few vanitygen actually returns here, I wouldn't be surprised if one of the existing python libraries or even javascript (bitaddress.org's bulk generator is slower, but there might be some performance to gain in their implementation as well) would perform much better.  It also reminds me of that weird bounty/'rendezvous points' hunt, which - at least for CPU - might be an easier starting point for modification (if not starting from scratch):-

A comparison against longer patterns:
typecommand
generated keys
'found' keys
% matched
relative efficiency
'1'vanitygen.exe -o file.lst -k -q -F compressed 1
21,534,544
83,874
0.38949%
100.00%
'1A'vanitygen.exe -o file.lst -k -q -F compressed 1A
16,982,045
66,152
0.38954%
78.87%
'1AA'vanitygen.exe -o file.lst -k -q -F compressed 1AA
72,843,612
49,592
0.06808%
59.13%
'1AAA'vanitygen.exe -o file.lst -k -q -F compressed 1AAA
256,016,211
3,419
0.00134%
4.08%
One thing that stands out here is that the percentage that 'matched' is the same for patterns '1' and '1A', which I think shouldn't be the case.
The other thing is the total number of keys generated.  '1A' having generated fewer than '1', while '1AA' and '1AAA' generated more and far more respectively.

tl;dr: vanitygen is weird when used for purposes other than what it was designed for Smiley


Edit: As the above tables were made using the Lifeboat version of vanitygen, the tables again with vanilla v0.22 (note that there's no 'compressed key' support unless patched in):
typecommand
generated keys
'found' keys
% matched
relative efficiency
input list
(1A,1B,..,1a,1b,..,11,12,..)
vanitygen.exe -o file.lst -k -f input.txt -q 1
21,858,878
85,213
0.38983%
98.62%
regexvanitygen.exe -o file.lst -k -r -q .*
22,057,282
85,920
0.38953%
99.44%
standardvanitygen.exe -o file.lst -k -q 1
22,179,614
86,408
0.38958%
100.00%
case insensitivevanitygen.exe -o file.lst -k -i -q 1
22,208,398
86,570
0.38981%
100.19%
64-bit versionvanitygen64.exe -o file.lst -k -q 1
29,060,532
113,316
0.38993%
131.14%
64-bit version, four processesvanitygen64.exe -o file.lst -k -q 1
94,486,821
368,135
0.38962%
426.04%
typecommand
generated keys
'found' keys
% matched
relative efficiency
1vanitygen64.exe -o file.lst -k -q 1
29,060,532
113,316
0.38993%
100.00%
1Avanitygen64.exe -o file.lst -k -q 1A
23,848,310
93,430
0.39177%
82.45%
1AAvanitygen64.exe -o file.lst -k -q 1AA
92,005,255
63,455
0.06897%
56.00%
1AAAvanitygen64.exe -o file.lst -k -q 1AAA
316,811,630
4,000
0.00126%
3.53%

P.S. If someone else is looking to generate a vanitygen address, see https://bitcointalk.org/index.php?topic=25804.msg12220012#msg12220012.

I kept two video cards for this long ago.  And two for gaming.   Needless to say the gaming got used.  But I never used vanity as much as I thought I would.

At first it sounded great and I thought was really cool.  And it is, but i personally now worry about security more then my address looks.  But yes when done right it is a cool thing to have.
7242  Bitcoin / Mining speculation / Re: Diff thread aug 23rd to sept 5th. Picks are not open yet. on: August 23, 2015, 05:28:45 PM
http://nextdifficulty.com/
Conservative: 2.1% 2.7% Continous: 4.3 %

goodbye negative Embarrassed

it is now at


Conservative: 0.9% 0.9% Continous: 0.9 %


This site seems to change a lot.  Now its showing:
Conservative: 1.4%   1.7%    Continous: 2.5 %

And price is not good were around 225 so losing ground from the 230 mark even.
7243  Bitcoin / Mining speculation / Re: want to start mining on: August 23, 2015, 05:26:27 PM
I guess buying an antminer S5+ could be a better option and plus as other users have already explained ,you cant even fell it if you buy just 1 miner ??
you make very less Roi's on single miners ..and so if you buy many miners ,those less profits gets multiplied ..so simple.

Problem is it is sold out on Bitmain's site.  No one really knows if they will do another batch or if that was to get rid of last of chips.

This leaves dealing with ebay/forum or the worst resellers.   Some of the prices on resellers are crazy.  But if you can get for a decent price it is a very nice unit.  Just make sure you have the electricity for it.
7244  Bitcoin / Hardware / Re: The completely evaluation of Dragon 1 T bitcoin miner from china on: August 23, 2015, 05:22:54 PM
If you do have it I'm sure eventually someone will thank you for it.   The original one is not up I don't believe.

I was doing some cleaning of my files and somehow deleted it off my dropbox.  That and a usb hard disk dying with me having sold my 1T a while ago makes it where I wont be able to get the image to share with others.

I had a copy of this saved (dragonboot-4BLADE-ENG.7z) and have uploaded it.

http://ul.to/8c0brmqe

Thank you for uploading it for others!   I am happy to see this image back up.

I was surprised it seemed to disappear after my bad luck on hardrive.  Truly appreciate it!
7245  Bitcoin / Hardware / Re: Well... This sucks! Antminer help! on: August 23, 2015, 05:18:37 PM
So! I stuck the snapped piece off with a little epoxy and it is running just fine, just hope I don't get a fan blade in the leg if it doesn't go as planned! It seems all good, thanks for all your help guys!

I would consider it a temp fix.  I really strongly suggest getting a new fan before failure resulting in that piece flying off.

I have only taken one hit from one of these high RPM fans and it was not fun at all, and yes it broke skin.   After that I always watched my fingers a little better to say the least..  If it spins up to high rpm and shoots that piece were talking about a very unfun time in anything valuable around or yourself.
7246  Bitcoin / Hardware / Re: [Hands On] Bitmain AntMiner S5+ - Notlist3d on: August 23, 2015, 05:03:54 PM
Well first good test of what happens when something goes wrong.  My networking to my mining area went down it's middle of night here.   Quick look at all the networking no quick fix. 

The miner looked fine I was worried without internet if it had problems as some S5's did.  But nothing visibly wrong at all.   So turned it off just to be safe with no networking.  I will be fixing it early in a few hours on what ever network problem I have into mining area.

Good news from  this font my miner was without internet/network for 30 minutes or so last night before I just unplugged it.  No damage no issues no bad things that people experienced from S5 did I run into.

Today I was able to find the cause of problem was new router needed reset.   Which is weird as router seemed fine, but that was the fix.   I recently got 1000 Mbps internet connection upgrade so a few different components when that happened.

But after fixing network connectivity let blades boot up then controller and worked like a charm.  It is running right now no issues now that network problem is sorted out.
7247  Bitcoin / Hardware / Re: [Hands On] Bitmain AntMiner S5+ - Notlist3d on: August 23, 2015, 05:00:12 PM
Interesting for running S5+ boards on S5 controller.

I suppose this also mean you could run some salvaged S5+ blades on S5 controllers later on. That could come in handy.


With S5+ controller I can run
4½ x Antminer S5 .
That's perfect, for my  water cooled S5 miner with 6 blades, which is currently with two controllers.


Today I have a 3 from  S5+ separated  block with different controller.  Three small "Dream Boxes"

I put them mine here
https://www.nicehash.com/?p=miners&addr=1N6av3woss8VGtb1b9cNwpkbmzCNRw7Xr8&a=1&l=1

and leave for 24 hours.
the frequency is 362.5

You can compare with one S5+
https://www.nicehash.com/?p=miners&addr=1NastyFRkeUTmMdbMmzggDVTQA6r3ibUoX&a=1&l=1

Very cool thanks for sharing your results.   It's pretty sweet that it's doing all that.

Almost makes you want to get the controller if you have a regular S5's makes it very nice to have all on one controller and set them all at once.
7248  Bitcoin / Hardware / Re: [Hands On] Bitmain AntMiner S5+ - Notlist3d on: August 23, 2015, 09:33:06 AM
Well first good test of what happens when something goes wrong.  My networking to my mining area went down it's middle of night here.   Quick look at all the networking no quick fix. 

The miner looked fine I was worried without internet if it had problems as some S5's did.  But nothing visibly wrong at all.   So turned it off just to be safe with no networking.  I will be fixing it early in a few hours on what ever network problem I have into mining area.
7249  Bitcoin / Hardware / Re: BITMAIN launches 4th generation Bitcoin mining ASIC: BM1385 on: August 23, 2015, 09:29:34 AM
Price will be 300$

It was higher then that for used S5's.   So I highly doubt we will see a 300 dollar miner.  I wish we would see a drop in prices I'm all for that.

Also we don't know when they will release it.  That could have some effect on price as well.
7250  Other / Beginners & Help / Re: How earn 1BTC a year? on: August 23, 2015, 08:11:15 AM
Find a good signature campaign, use those payouts to buy in on various alts and hope one gets rising!!!  (but you'll lose if the coin fails, obviously - in that case, hold in BTC  Grin )

yes I used to play a signature campaign with payment altcoin, I also do not think it turned out paid more than bitcoin, because when that time the coin prices are rising. but for now I think it is rare and did not last long like payment by bitcoin.

Just throwing at random alt coins wont really help.  It's essentially gambling.  You should know what your doing and have reasons for the specific altcoin.

If you are just gambling and picking random altcoins you chances are would be better off with just holding bitcoin.  It is the safer bet and takes much less knowledge.
7251  Other / Beginners & Help / Re: Bitcoin Miner on Windows Phone on: August 23, 2015, 07:13:10 AM
you can mine with every device. however, you won't make anything, but you will damage your phone in the process.

This is true you can do it by hand, but it would obviously not get any reward.  My favorite is the nintendo doing it - http://retrominer.com/

So it is possible to mine on a LOT of devices.  It is ROI math that comes in important.   Sadly now asics are pretty much as must on bitcoin mining.
7252  Bitcoin / Mining speculation / Re: Diff thread aug 23rd to sept 5th. Picks are not open yet. on: August 23, 2015, 07:10:07 AM
Ah indeed. I just noticed now it indeed stuck just after the diff increase. O.o;

Thats weird i been using this forever and i never noticed any bugs. I wonder what causes it.

Not sure what causes it but I have seen it happen before a while back.   I think it was in the day's that it took for it to work again.

Not sure if it will take day's again.  Hopefully not but we will see.
7253  Bitcoin / Hardware / Re: [Guide] Dogie's Comprehensive Bitmain Antminer S4 Setup [HD] on: August 23, 2015, 07:07:32 AM
Static pressure for Scythe fan:

I know the SP120 did NOT move enough air to cool an S5 but that miner is not enclosed like the S4. My recommendation of the Scythe is purely from my tests on an S5 and from having owned a few S4's.


I see. Thanks for the image. If that is accurate, it would explain the huge difference in cooling performance. It would see a bit expensive to lose 10dB, but if the cooling performance is also better, then maybe it will not run at full speed either.

Hmm. I guess i will need to obtain a sample to toy around. I do also need to think of my S5 as well.

I would just go with one of the recommended ones: https://bitmain.zendesk.com/hc/en-us/articles/204199879-Antminer-S4-fan-specification-and-possible-replacement-fans

I have used Delta's and Sanyo.   But they are really the tried and true fans that work.   No they are not quiet but they move air.
7254  Bitcoin / Hardware / Re: ANTMINER S5+ is available to order, 7.722TH/S 0.445J/GH on: August 23, 2015, 07:05:06 AM
I previously checked on the site for S5+ manual and firmware, but they are present now.

The manual makes more sense regarding the control board power connection, kind of...
It states to connect it to any power supply, but it is still worded oddly.
I am going to assume it must not matter, but I am at a loss why they say anything about it other than to connect it to a power supply unless there is something they are trying to tell us.

If anyone has any ideas what they are truly getting at feel free to post up.

Regarding the control board connection the manual states:
"...And be sure to connect the hash boards to the PSU first and then connect the controller to PSU"
"Connect connector on control board to any power supply"

If you are connecting the controller to the same PSU as hash boards, why does it matter if it is first or last, it will get power at the same time...
They have stated this several times, so there must be something there.

 and just because I love to repeat things that make me contemplate the mysterious statements in life I will repeat this from the manual as well:
"Higher input voltage will cause higher mining efficiency"

So how high can someone go?

I see improvements in this manual over previous generations. I appreciate there is a manual for this model.
I hope we see some clarification on the points made because whatever issue (if there is one) they are getting at with the control board power confuses the hell out of me. I previously thought that maybe they wanted the hash boards powered up slightly before the control board, but the way the manual reads with connecting to any power supply that can't be it and besides you don't want to be fiddling around getting that powered on with any delay when that many chips are putting out heat -- less fans.

I have seen an unfinished heatsink. It isn't cut out all the way. I will get a picture "from the guy" and get it posted. Overall it looks like a good unit. IT needs to be tested on a couple of other pools and ck solo to collect more data by "the guy" before anything lengthy is posted.





As far as the power I think you are worrying a little to much on it.  I think they designed controller unit to look for blades being powered on, so blades being powered on is a good thing.  If for some reason it the controller is booted up first and didnt work just reboot it Smiley  I have had 0 issues with mine.

As far as power getting more efficient not sure.  220/240 is more efficient then 110/120.  But I suspect almost all have it on 240 and not multiple 120's.  But not sure how far they are thinking.

What do you mean by you have seen a unfinished heatsink can you take a picture?
7255  Bitcoin / Hardware / Re: [Guide] Dogie's Comprehensive Bitmain Antminer S5 Setup [HD] on: August 23, 2015, 06:59:25 AM
Hi, I'm not sure if this is the right thread but I'm having trouble getting Bitmain to respond to my S5 support tickets.

I bought 34 S5's in mid-July and have had trouble with 4 of them.

1) A tantalum capacitor on one of them blew up, and both boards on the unit appear to be non-functioning, not just the one with the bad capacitor.

2) On a different unit, the fan quit. I used the fan from #1 to replace it. No biggie.

3) Ticket $ 3140: One unit purchased at the end of Batch 5, and sold as a new one, has one bad board with only 11 working chips. I told them I tested a different PSU but it didn't help. Bitmain suggested I try re-applying the thermal paste, which I did with no difference. Then they suggested I use at least a 750W PSU instead of a 600W, which I don't understand how they got the idea I am using a 600W PSU when I am using 1 of their 1600W PSUs to power two S5's. (Some poor soul must have cut himself on the heat sink blades as there was blood on the case when it arrived. Eeeew!)

4) Controller on one was no longer responding, so I replaced it with the controller from #1 also. It is working OK.

I wouldn't have done all this except that Bitmain's response to take #3 apart and try and fix it myself kind of shook my confidence that they would do anything at all.

However, I took 4 problems and turned them into just 1 and 1/2  Smiley I sent them Ticket #3277 to explain the issues.

But as I see it, Bitmain owes me 1 working S5 and 1 working S5 board. (Or I could run it as an S5-  Hm.)

As they seem to be sold out of S5s, I'd take a refund or a 2.7 BTC coupon on the new S7 (estimated)

Anything else I can do?

Thanks!

Proper would be the official S5 thread.  Anymore before you do anything you need to get permission I think they have cracked down.   Did any of the purchases come during the used batch?  If so I could see that being a problem as they might look at order dates and I believe it had 30 day's warranty so it could be over.  Also did you buy direct from Bitmain?

But post in official S5 thread, PM official account, send email.    The ticket should do it, but the other options are there.   But ticket should work assuming you meet warranty requirements.
7256  Bitcoin / Mining speculation / Re: Diff thread aug 23rd to sept 5th. Picks are not open yet. on: August 23, 2015, 05:02:32 AM
Very early in the week but here is bitwisdom:

Bitcoin Difficulty:    54,256,630,328
Estimated Next Difficulty:    54,370,133,238 (+0.21%)
Adjust time:    After 2004 Blocks, About 14.1 days
Hashrate(?):    408,339,410 GH/s

And price is still around 230 no huge moves.

The above is what I think is from a "frozen" bitcoinwisdom. I've been seeing that for almost a day now, so it's really a meaningless number. It's also way too early to matter, but just thought I'd mention it.

Mine showed a negative a day ago.  I'm was not aware it was stuck on this.  Hopefully it changes soon then as I enjoy watching it.
7257  Bitcoin / Hardware / Re: GekkoScience BM1384 Project Development Discussion on: August 23, 2015, 05:00:32 AM
I kinda doubt they do, at least not for general release. Right now they are their only real competition, so unless the other guys put up something substantially better than the BM1385 in the relatively near future they have no incentive to ship another new chip.

They are very secretive as most are.  Until they release their own miner I doubt they will sell to anyone else.

They no doubt will want to be the first ones with a miner using it to grab those initial sales.  I hope after they do support projects like yours, but I don't know if they will until much later. 
7258  Other / Beginners & Help / Re: How to guide for lost Bitcoin-QT password? on: August 23, 2015, 04:21:24 AM
You should try with btcrecover tool it's the best for bitcoin & litecoin multiple wallets password recovery.

I could help with the work if you could not do it by yourself.

The big question is if OP knows part or most of it.   If he knows no part of seed/private key chances of recovery are very very small.

If he is trying to brute force it there is just to many options.  This is what keeps wallets secure is it being pretty much impossible to brute force.
7259  Bitcoin / Mining speculation / Re: Diff thread aug 23rd to sept 5th. Picks are not open yet. on: August 23, 2015, 04:17:40 AM
Very early in the week but here is bitwisdom:

Bitcoin Difficulty:    54,256,630,328
Estimated Next Difficulty:    54,370,133,238 (+0.21%)
Adjust time:    After 2004 Blocks, About 14.1 days
Hashrate(?):    408,339,410 GH/s

And price is still around 230 no huge moves.
7260  Bitcoin / Hardware / Re: BITMAIN AntMiner APW3-12-1600 PSU Series on: August 23, 2015, 04:15:27 AM
Here is my dryer receptacle and plug, I believe these are US standard.

                 


I was looking at this Pdu from CL which I can get for $25:

http://www.amazon.com/Compaq-Power-Distribution-Voltage-NA-only/dp/B0007RAOX4/ref=sr_1_1?ie=UTF8&qid=1440215910&sr=8-1&keywords=compaq+pdu

It's 16 amp max.  My question is it comes with the twist-lock plug is there an adapter so I don't have to change receptacles?  This is temporary just to test this S4.  The pdu's all come with a different style plug as well, do I need a special cord from psu to pdu?

Edit:  Found some of my answers.  I have an older house so I have 3 prong 220v outlet for my dryer after 2000 all homes were wired with 4 prong outlets per standard.  Found adapters from psu to pdu (C13 to C14) and a 3 prong to 3 prong twist-lock adapter, which most pdu's seem to have.  But what I need to know most is does a 220v pdu output in 220v or is it 120v?  My APW3-12-1600 only runs on 205-240v.  Any help would be appreciated.

I can't say for sure all PDU's do it.  But yes a 240/220 PDU putting out 220/240 is kinda the point.  You want access to a lot of power.    

How many of these do you plan on running?  If multiple you might see how many amp your breaker is putting out to the PDU.  I know when I put my 240 in I specifically went with 30 amp breaker to get a good amount of electricity through it.
Pages: « 1 ... 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 [363] 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 ... 750 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!