Bitcoin Forum
June 16, 2024, 07:03:30 PM *
News: Voting for pizza day contest
 
   Home   Help Search Login Register More  
Pages: « 1 ... 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 »
  Print  
Author Topic: ANTMINER U3 Discussion and Support Thread  (Read 149127 times)
Mikestang
Legendary
*
Offline Offline

Activity: 1274
Merit: 1000



View Profile
December 11, 2015, 06:52:47 PM
 #1201

Did anyone try to mod the U3 for quieter operation?
Are you serious?  It's one 80mm fan, my desktop has 10 of them.  White noise is relaxing, you should learn to enjoy it!
Riseman
Hero Member
*****
Offline Offline

Activity: 690
Merit: 500


View Profile
December 11, 2015, 07:15:01 PM
 #1202

Did anyone try to mod the U3 for quieter operation?
Are you serious?  It's one 80mm fan, my desktop has 10 of them.  White noise is relaxing, you should learn to enjoy it!

My has only 9 so it's much quieter Grin Or probably it depends on the U3 batch and fan model.
notlist3d
Legendary
*
Offline Offline

Activity: 1456
Merit: 1000



View Profile
December 11, 2015, 10:48:46 PM
 #1203

Did anyone try to mod the U3 for quieter operation?
Are you serious?  It's one 80mm fan, my desktop has 10 of them.  White noise is relaxing, you should learn to enjoy it!

Can you show a pictue of the 10?  I would love to see that!

And thanks to the person showing cooling adapter that is interesting!
CrazyGuy
Legendary
*
Offline Offline

Activity: 1973
Merit: 1007



View Profile
December 11, 2015, 11:28:42 PM
 #1204

Did anyone try to mod the U3 for quieter operation?
Are you serious?  It's one 80mm fan, my desktop has 10 of them.  White noise is relaxing, you should learn to enjoy it!


I've had an SP20 running in an an adjacent room for the past year and never noticed anything from my U3. Got rid of the SP20 and now the U3 is making its presence known, but it's barely noticeable.

By the way, my customized R1 has been running my U3 without human intervention for around 6 weeks now.

ASICPuppy.net ASIC Mining Hardware and Accessories - Compac F in stock!
heathkun
Newbie
*
Offline Offline

Activity: 9
Merit: 0


View Profile
December 12, 2015, 12:55:16 AM
 #1205

my miners slow down when I use more than two with cgminer. Is that a problem I will have with the r1? I always have to have 4 copies of cgminer open to avoid the slow down....

I noticed that my averages were always less than desired when I ran between 4 and 8 U3's on an R1.  I found myself rebooting the R1 often to get my hashing back to desired levels.  I ended up going back to using a PC to run the U3's since I have had far better averages and I unplug and plug back in the zombie U3's a lot less than I was rebooting the R1.
notlist3d
Legendary
*
Offline Offline

Activity: 1456
Merit: 1000



View Profile
December 12, 2015, 04:36:27 AM
 #1206

Did anyone try to mod the U3 for quieter operation?
Are you serious?  It's one 80mm fan, my desktop has 10 of them.  White noise is relaxing, you should learn to enjoy it!


I've had an SP20 running in an an adjacent room for the past year and never noticed anything from my U3. Got rid of the SP20 and now the U3 is making its presence known, but it's barely noticeable.

By the way, my customized R1 has been running my U3 without human intervention for around 6 weeks now.

I have been running mine for weeks aswell.  Has been nice not to touch my 3 U3's.  Truly a lotto machine I don't mess with at this point.

Complete change from when I was running them on my windows machine.
christiansenn
Newbie
*
Offline Offline

Activity: 25
Merit: 0


View Profile
December 13, 2015, 11:38:16 AM
 #1207

Did anyone get a reset script to work?

Tried
echo "0" > "/sys/bus/usb/devices/usb1/power/autosuspend"
echo "auto" > "/sys/bus/usb/devices/usb1/power/level"
echo "0" > "/sys/bus/usb/devices/usb2/power/autosuspend"
echo "auto" > "/sys/bus/usb/devices/usb2/power/level"
echo "0" > "/sys/bus/usb/devices/usb3/power/autosuspend"
echo "auto" > "/sys/bus/usb/devices/usb3/power/level"
echo "0" > "/sys/bus/usb/devices/usb4/power/autosuspend"
echo "auto" > "/sys/bus/usb/devices/usb4/power/level"

But seems it not working i still have to power on /off the u3s
.anto.
Full Member
***
Offline Offline

Activity: 179
Merit: 131


View Profile
December 13, 2015, 02:31:17 PM
Last edit: December 13, 2015, 02:43:17 PM by .anto.
 #1208

Did anyone get a reset script to work?

Tried
echo "0" > "/sys/bus/usb/devices/usb1/power/autosuspend"
echo "auto" > "/sys/bus/usb/devices/usb1/power/level"
echo "0" > "/sys/bus/usb/devices/usb2/power/autosuspend"
echo "auto" > "/sys/bus/usb/devices/usb2/power/level"
echo "0" > "/sys/bus/usb/devices/usb3/power/autosuspend"
echo "auto" > "/sys/bus/usb/devices/usb3/power/level"
echo "0" > "/sys/bus/usb/devices/usb4/power/autosuspend"
echo "auto" > "/sys/bus/usb/devices/usb4/power/level"

But seems it not working i still have to power on /off the u3s

I am using BFGMiner on my TL-WDR3600 WiFi router. I only connected 2 of my Antminer U3 to it on /dev/ttyUSB0 and /dev/ttyUSB1. I use the following script to toggle both ttyUSBs when one and/or both miners are dead.

Code:
#!/bin/sh
# Switch OFF ttyUSB0
echo "0" > /sys/devices/virtual/gpio/gpio22/value
# Switch OFF ttyUSB1
echo "0" > /sys/devices/virtual/gpio/gpio21/value
sleep 10
# Switch ON ttyUSB0
echo "1" > /sys/devices/virtual/gpio/gpio22/value
# Switch ON ttyUSB1
echo "1" > /sys/devices/virtual/gpio/gpio21/value
exit 0

That script does not help all the time. I sometime still need to physically unplug and re-plug the USB cables. And if that still does not bring the miners up and running in stable condition, i.e. one of the chips shows to have 0.0 Gh/s effective hash rate, I have to also physically unplug and re-plug the power cables.
qByter
Newbie
*
Offline Offline

Activity: 2
Merit: 0


View Profile
December 14, 2015, 10:59:02 AM
 #1209

Hello,

I´m quite new to mining and recently got me an U3 to play with it... 
I started with the compiled cgminer binaries for Windows from the antminer website (version 4.8.0) and used the settings from this thread:  --bmsc-options 115200:0.5 --bmsc-voltage 0800 --bmsc-freq 0B82    and got a solid 74GH/s (ran 2 days with some minor hardware errors, but solid).

I now switched to a Raspberry2 and compiled the latest cgminer 4.9.2.  I´ve tried various settings but cannot get anywhere near the 74GH/s that the old windows cgminer runs at.
Does anyone know which settings equal the above?

Thx and regards
Mikestang
Legendary
*
Offline Offline

Activity: 1274
Merit: 1000



View Profile
December 14, 2015, 08:11:59 PM
 #1210

It was never actually hashing at that rate, it was incorrectly reported by bitmain's cgminer fork.  Did you ever compare the reported hash on your end to what the pool you were mining to saw?

Volt 800 and freq 250 typically results in the max. hash rate, though YMMV as almost every U3 responds differently.
zOU
Hero Member
*****
Offline Offline

Activity: 728
Merit: 500

★ these are stars ★


View Profile
December 14, 2015, 08:16:54 PM
 #1211

I agree with Mike, +/-63Ghs is the max you should get with these settings.

qByter
Newbie
*
Offline Offline

Activity: 2
Merit: 0


View Profile
December 14, 2015, 09:55:52 PM
 #1212

It was never actually hashing at that rate, it was incorrectly reported by bitmain's cgminer fork.  Did you ever compare the reported hash on your end to what the pool you were mining to saw?

Yes, I did, the pool also reports ~72-75Gh/s, continously... And it´s the only miner I have running, so I guess it´s true Wink

I have now found and compiled the bitmain fork and I am back at that rate with the raspberry...  All good Cheesy

Mikestang
Legendary
*
Offline Offline

Activity: 1274
Merit: 1000



View Profile
December 14, 2015, 10:28:27 PM
 #1213

Well we all know that every U3 is it's own animal, so maybe you lucked out and got the only one ever made that actually performs better than advertised.  I, on the other hand, am left with one U3 and it won't hash over 45GH/s no matter what settings it has.
zOU
Hero Member
*****
Offline Offline

Activity: 728
Merit: 500

★ these are stars ★


View Profile
December 14, 2015, 11:04:33 PM
 #1214

Well we all know that every U3 is it's own animal, so maybe you lucked out and got the only one ever made that actually performs better than advertised.  I, on the other hand, am left with one U3 and it won't hash over 45GH/s no matter what settings it has.

same here, out of my 6 U3, one will not got over 43Ghs....

Riseman
Hero Member
*****
Offline Offline

Activity: 690
Merit: 500


View Profile
December 14, 2015, 11:51:10 PM
 #1215

Well we all know that every U3 is it's own animal, so maybe you lucked out and got the only one ever made that actually performs better than advertised.  I, on the other hand, am left with one U3 and it won't hash over 45GH/s no matter what settings it has.

Maybe it's got one dead chip out of four?
Mikestang
Legendary
*
Offline Offline

Activity: 1274
Merit: 1000



View Profile
December 15, 2015, 12:09:41 AM
 #1216

Nope, all systems are go.  It's a piss-poor piece of hardware is all, I'm just glad it hashed at all, the R1 as a controller has made it much more tolerable.
notlist3d
Legendary
*
Offline Offline

Activity: 1456
Merit: 1000



View Profile
December 15, 2015, 01:41:50 AM
 #1217

Nope, all systems are go.  It's a piss-poor piece of hardware is all, I'm just glad it hashed at all, the R1 as a controller has made it much more tolerable.

I admit that the R1 from crazyguy made my life a lot easier.  I love automation and not touching it.

I have 3 and I had to  every monrning... every night.... reset the zombies.  And I would miss lot's of time with them  being zombied.
christiansenn
Newbie
*
Offline Offline

Activity: 25
Merit: 0


View Profile
December 15, 2015, 06:28:36 AM
 #1218

Hi
I just got the R1 crazy how do you connect 3 which USB hub?
lama-hunter
Sr. Member
****
Offline Offline

Activity: 266
Merit: 250



View Profile
December 15, 2015, 06:36:18 AM
 #1219

Hi there Guys Smiley

Iam using still 2 Antminer u3 stady and have also 2 more for some Solo Mining events with friends.
The Problem i got so far is my Config.

One out of the Miners gets really Hot and the other ones running stady on that voltage - See the Config below :

cgminer.exe --bmsc-options 115200:0.54 -o stratum+tcp://stratum.bitcoin.cz:3333 -u x -p x --bmsc-voltage 0830 --bmsc-freq 0982

You think the Voltage i use is to high? I heared from another person that iam using a quit high voltage for this :/ MAybe someone of you guys could help?
Would be really great for me Wink

regards
lama-hunter
christiansenn
Newbie
*
Offline Offline

Activity: 25
Merit: 0


View Profile
December 15, 2015, 08:47:50 PM
 #1220

Hi
I get:

SB management [P]ool management ettings [D]isplay options [Q]uit
 0: AU3 0       : 225MHz 775mV            | 56.95G / 55.49Gh/s WU:775.3/m
 1: AU3 1       : 225MHz 775mV            | 56.23G / 55.36Gh/s WU:772.6/m

is good?

They do zombie every 24 hours i have to power on/off though..
Pages: « 1 ... 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 »
  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!