Search content
Sort by

Showing 20 of 20 results by lordmykl
Post
Topic
Board Hardware
Re: ANTMINER S3 Discussion and Support Thread.
by
lordmykl
on 15/12/2014, 20:12:55 UTC
Does anyone know of a good way to stop the 'no internet' beeping on the S3?  I have the no beeping option selected on the set-up page but they will still beep when no work is available.  It is very annoying because the internet is not reliable right now and I'm using the S3 as a space heater.   

Maybe some hot glue on the beeper?

I tried the hot glue technique...it only muffled it slightly. The only way I found that was 100% effective was to take some pliers and surgically remove the PC speaker.  It works like a charm. Smiley
Post
Topic
Board Hardware
Re: ANTMINER S3 Discussion and Support Thread.
by
lordmykl
on 09/11/2014, 17:22:37 UTC
You can easily remove the speaker with a pair of needle-nose pliers. Just twist the speaker back and forth a few times and it will eventually come out. It's worthless for me anyway...I removed the speakers out of all 28 of my miners with no problems.

Beeping when internet goes down..

HOW CAN I MAKE IT STOP.. Sad


i have unchecked the box in the miner config tab... but when the internet has an outage all the miners start beeping..

of course when the internet comes back online, they dont stop until i get up and unplug them and restart them Sad

seriously..

this is becoming so annoying to be woken up at 3am because the internet has some update or something and has gone offline for a few minutes..


did i mention that they are pretty freaking loud too.. Sad

Annoying isn't it?  I don't think there's any fix short of a hard fix ... ie destroy the speaker, cut the wire, or glue it closed.  Sometimes they beep for reason at all as well.

M
Post
Topic
Board Hardware
Re: ANTMINER S3 Discussion and Support Thread.
by
lordmykl
on 28/10/2014, 01:43:42 UTC
So I did a little experiment with one of my Antminer S3+ units (One of the better performing ones that is able to hold any frequency setting for long durations without any 'Xs.' I essentially tested out each of the frequency settings and compared them to the wattage numbers used at that setting with 110v power, then tested again at 230v.  The results of my testing are below:

http://i.imgur.com/3MZa9r0.jpg?1

In essence, what I found was somewhat obvious...that you get better Joules/Gh at 230V than you do at 110V, regardless of the frequency the miner is set to.  I also found that the 'sweet spot' of energy used per GH/s is around the 200 MHz mark (200 MHz @ 230v and 206.25 MHz @ 110v.)  I noted that in green, which incidently was the only reading that matched the 'published' efficiency numbers.  A few notes about my testing:

1. I left each of them at the specific MHz frequency for exactly 3 hours, then recorded the Wattage and Average hashrate at that time. I was off by a few minutes sometimes, but suffice it to say I left them for at least three hours. I did note that this number is more accurate the longer you wait...however, I didn't have so much time to play with this, so there may be some variation that I couldn't account for or the numbers may change more significantly over time.

2. I used the same Antminer for every setting, the same PS (Corsair CX750 with all four PCI-E cables plugged in) and the same Kil-a-watt unit for each test.  I was using the 8/11 firmware on the unit with the updated cgminer version (4.6.0-140908) posted by ckolivas.

3. The one major variable I couldn't control for was ambient air temperature, which was generally about 5C warmer in the 230V location than in the 110V location, plus during the day there were fluctuations. This likely would affect efficiency, though probably not by too great of a deal.

4. I used three variables which you don't see here...the price per kilowatt/hour ($0.10,) the current price of BTC in USD ($351.59,) and the amount of BTC/Gh/day based on difficulty (0.00001398 currently)

5. I included the power usage of the unit above when it is not hashing (noted as 0) just to note the overhead that the system takes up if it is on but not running.

Anyway, hope you can get some use out of this...at a minimum it taught me that it's not just a myth that 230V is more cost-efficient than 110V, but when it comes down to it, it's only more efficient by 1 or 2 cents a day...
Post
Topic
Board Hardware
Re: ANTMINER S3 Discussion and Support Thread.
by
lordmykl
on 18/09/2014, 18:20:47 UTC
So....long story short, I have a total of Eighteen S3+ Antminers that are in a building that for most of the time is not used.  Every once in a while, however, it is used, so I want to be able to easily drop the fan noise down via a scripted approach. I have Teamviewer access to a live system there and I've used Putty to SSH into individual miners to change frequency on individual units. What would be a good scripted approach to change them en masses from say 250M to 212.5M and back?  Sequential IPs and all same username/PW...

Thanks in advance!

I would setup a script on each one and then modify the web interfaces adding another page like 192.168.1.99/slowdown and 192.168.99/speedup that runt he scripts
then you could just do it all over port 80 via lynx.

assuming you know how to code etc...
web interfaces root is /www  by the way...

Well, I used to program my TRS-80 many years ago and do some work in PowerShell automation, but I wouldn't say I'm proficient at all. Was hoping there was a fairly easy way to automate, but I can research what you noted above, thanks!

basically you need 2 copies of /etc/config/asic-freq one with the higher frequency and one with the lower frequency. and of course in the script copying one over the other and issuing a /etc/init.d/cgminer restart command. or maybe a /etc/init.d/cgminer stop    slight wait then /etc/init.d/cgminer start.  as I have observed the restart command sometimes does not restart cgminer
the hardest part is most likely getting html or cgi script to run the script, but im sure if u looked over the cgi of how the web client issues the reboot command that code could be copied and modified to run your script

actually after looking at it, it is simpler than i thought...

just put your script in /www/cgi-bin
low.sh
#!/bin/sh -f
----script code here---
echo "Content-type: text/html"
echo ""
echo ""
echo ""
echo "

low executed

"
echo ""

dont forget chmod 777 low.sh
execute that with http://antminersiphere/cgi-bin/low.sh
and it will execute that script.
then do the same for adjusting back to hi  hi.sh
then if using windows or unix you can just install lynx and run a batch file that executes the 19 lynx url requests to each miner


Thanks for the detailed response...this may be beyond my current coding abilities but I've been meaning to learn this stuff more so I may take it on as a challenge anyway. I'll post if I can get it working...



Well it is pretty much complete cept for the script here which would be this

cp /etc/config/asic-freq.low /etc/config/asic-freq
/etc/init.d/cgminer stop
wait
/etc/init.d/cgminer start

so low.sh would be
low.sh
#!/bin/sh -f
cp /etc/config/asic-freq.low /etc/config/asic-freq
/etc/init.d/cgminer stop
wait
/etc/init.d/cgminer start
echo "Content-type: text/html"
echo ""
echo ""
echo ""
echo "

low executed

"
echo ""

hi.sh would be
#!/bin/sh -f
cp /etc/config/asic-freq.hi /etc/config/asic-freq
/etc/init.d/cgminer stop
wait
/etc/init.d/cgminer start
echo "Content-type: text/html"
echo ""
echo ""
echo ""
echo "

hi executed

"
echo ""

and of course before this you would edit /etc/config/asic-freq to use the overclocked values then cp asic-freq to asic-freq.hi. then modify it for the lower ones and cp asic-freq asic-freq.low

this all wont work on the newer firmware though because they changed how the frequencies are changed. it is in the gui interface. but I bet there is an easy way to modify it too.
 I just threw the antminer logo in there for the hell of it.

then I guess u can run a batch file that executes
lynx -dump http://antminerup/cgi-bin/low.sh > null



Wow, thanks! You have a good point about the newer firmware...since these are S3+ units I'm on the latest rev, which doesn't respect the settings in the asic-freq file. Does anyone know a way to change frequency in the latest firmware without using the GUI?

Post
Topic
Board Hardware
Re: ANTMINER S3 Discussion and Support Thread.
by
lordmykl
on 18/09/2014, 16:49:18 UTC
So....long story short, I have a total of Eighteen S3+ Antminers that are in a building that for most of the time is not used.  Every once in a while, however, it is used, so I want to be able to easily drop the fan noise down via a scripted approach. I have Teamviewer access to a live system there and I've used Putty to SSH into individual miners to change frequency on individual units. What would be a good scripted approach to change them en masses from say 250M to 212.5M and back?  Sequential IPs and all same username/PW...

Thanks in advance!

I would setup a script on each one and then modify the web interfaces adding another page like 192.168.1.99/slowdown and 192.168.99/speedup that runt he scripts
then you could just do it all over port 80 via lynx.

assuming you know how to code etc...
web interfaces root is /www  by the way...

Well, I used to program my TRS-80 many years ago and do some work in PowerShell automation, but I wouldn't say I'm proficient at all. Was hoping there was a fairly easy way to automate, but I can research what you noted above, thanks!

basically you need 2 copies of /etc/config/asic-freq one with the higher frequency and one with the lower frequency. and of course in the script copying one over the other and issuing a /etc/init.d/cgminer restart command. or maybe a /etc/init.d/cgminer stop    slight wait then /etc/init.d/cgminer start.  as I have observed the restart command sometimes does not restart cgminer
the hardest part is most likely getting html or cgi script to run the script, but im sure if u looked over the cgi of how the web client issues the reboot command that code could be copied and modified to run your script

actually after looking at it, it is simpler than i thought...

just put your script in /www/cgi-bin
low.sh
#!/bin/sh -f
----script code here---
echo "Content-type: text/html"
echo ""
echo ""
echo ""
echo "

low executed

"
echo ""

dont forget chmod 777 low.sh
execute that with http://antminersiphere/cgi-bin/low.sh
and it will execute that script.
then do the same for adjusting back to hi  hi.sh
then if using windows or unix you can just install lynx and run a batch file that executes the 19 lynx url requests to each miner


Thanks for the detailed response...this may be beyond my current coding abilities but I've been meaning to learn this stuff more so I may take it on as a challenge anyway. I'll post if I can get it working...

Post
Topic
Board Hardware
Re: ANTMINER S3 Discussion and Support Thread.
by
lordmykl
on 18/09/2014, 06:51:28 UTC
So....long story short, I have a total of Eighteen S3+ Antminers that are in a building that for most of the time is not used.  Every once in a while, however, it is used, so I want to be able to easily drop the fan noise down via a scripted approach. I have Teamviewer access to a live system there and I've used Putty to SSH into individual miners to change frequency on individual units. What would be a good scripted approach to change them en masses from say 250M to 212.5M and back?  Sequential IPs and all same username/PW...

Thanks in advance!

I would setup a script on each one and then modify the web interfaces adding another page like 192.168.1.99/slowdown and 192.168.99/speedup that runt he scripts
then you could just do it all over port 80 via lynx.

assuming you know how to code etc...
web interfaces root is /www  by the way...

Well, I used to program my TRS-80 many years ago and do some work in PowerShell automation, but I wouldn't say I'm proficient at all. Was hoping there was a fairly easy way to automate, but I can research what you noted above, thanks!
Post
Topic
Board Hardware
Re: ANTMINER S3 Discussion and Support Thread.
by
lordmykl
on 18/09/2014, 02:16:44 UTC
So....long story short, I have a total of Eighteen S3+ Antminers that are in a building that for most of the time is not used.  Every once in a while, however, it is used, so I want to be able to easily drop the fan noise down via a scripted approach. I have Teamviewer access to a live system there and I've used Putty to SSH into individual miners to change frequency on individual units. What would be a good scripted approach to change them en masses from say 250M to 212.5M and back?  Sequential IPs and all same username/PW...

Thanks in advance!
Post
Topic
Board Hardware
Re: ANTMINER S3 Discussion and Support Thread.
by
lordmykl
on 17/09/2014, 21:15:41 UTC
Batch 10 just showed up on Bitmain's site...at least the price is right for ROI. Smiley

http://i.imgur.com/SPOSNBA.png
Post
Topic
Board Hardware
Re: ANTMINER S3 Discussion and Support Thread.
by
lordmykl
on 10/09/2014, 15:48:21 UTC
shipped my b8 miners this morning. how long does it usually take to ship about a week?

They should give you a tracking number and it should be no more than a few days. My shipment is schedule to arrive in two days...
Post
Topic
Board Hardware
Re: ANTMINER S3 Discussion and Support Thread.
by
lordmykl
on 10/09/2014, 14:48:10 UTC
FYI, my Batch 8 S3+ order just shipped roughly 6 hours ago. My order time was 2014-08-13 19:15:19.0. Ten days early isn't too bad I guess...thanks Bitmain!


UPS shows my scheduled arrival time for this Friday afternoon between 2:15pm and 6:15pm PDT...will crack open one of these, post pics, and metrics too once I get them. It's Christmas in September! Smiley
Post
Topic
Board Hardware
Re: ANTMINER S3 Discussion and Support Thread.
by
lordmykl
on 10/09/2014, 14:39:20 UTC
FYI, my Batch 8 S3+ order just shipped roughly 6 hours ago. My order time was 2014-08-13 19:15:19.0. Ten days early isn't too bad I guess...thanks Bitmain!
Post
Topic
Board Hardware
Re: ANTMINER S3 Discussion and Support Thread.
by
lordmykl
on 06/09/2014, 01:41:38 UTC
What am I doing wrong here?

Is your PC connected directly to the Ant? Are the Ethernet port lights on/blinking on the PC? Are Ant's fans on?

Sorry, I don't remember what the Ant's LEDs should be doing.

1. I've tried it directly connected and to the router. Result is so far the same.

2. The ethernet port lights are not blinking.

3. The fans are both on.

Do this with direct connection only. Try another Ethernet cable. If Ethernet lights are not on and/or the connection icon on the PC has that little red x on it, you don't have a connection with the Ant, and this is before it even comes to IP addresses etc. Could be bad cable, or bad Ant (I'm assuming your PC's Ethernet port is working).

Edit: one more thing to try would be to connect the Ant to the router just to verify if router's Ethernet port lights come on. If not then there might be something wrong with the Ant. Try resetting it.

Keep in mind that if you direct connect the ethernet cable you'll need a crossover cable or a special crossover adapter like this one for that to work properly. http://www.amazon.com/Cables-Unlimited-Cat6-Crossover-Adapter/dp/B00030BYJI/ref=sr_1_10?s=electronics&ie=UTF8&qid=1409967632&sr=1-10

Post
Topic
Board Hardware
Re: ANTMINER S3 Discussion and Support Thread.
by
lordmykl
on 05/09/2014, 22:01:28 UTC
How to launder Bitcoins easily. Smiley

Just be sure you don't shake stuff in the sink right below them.  A couple drops getting sucked into those fans and poof...no more Cheer (pun intended).

Yeah, the sink isn't used...so we should be good to go. Needed a fresh outlet and an exhaust window for some more S3s so figured the laundry room would fit the bill. Smiley

Post
Topic
Board Hardware
Re: ANTMINER S3 Discussion and Support Thread.
by
lordmykl
on 05/09/2014, 21:38:25 UTC
How to launder Bitcoins easily. Smiley

http://i.imgur.com/RMq4MQf.jpg
Post
Topic
Board Hardware
Re: ANTMINER S3 Discussion and Support Thread.
by
lordmykl
on 25/08/2014, 20:54:46 UTC
My edit disappeared as well. 

One can hope.

My first B8 order should be one of the first to be processed (2014-08-13 19:15:19.0) so (one would assume) it should be one of the first to ship as well. I'll post in this forum immediately after receiving notification of shipment. Watching it like a hawk now... Smiley

Post
Topic
Board Hardware
Re: ANTMINER S3 Discussion and Support Thread.
by
lordmykl
on 25/08/2014, 20:27:34 UTC
what ? they started shipping batch 8 ?

My Edit as disappeared too. Some insights?

Don't hold your breath, the 'Edit' link on my first B8 order disappeared weeks ago.

Post
Topic
Board Hardware
Re: ANTMINER S3 Discussion and Support Thread.
by
lordmykl
on 17/08/2014, 02:31:44 UTC
Hello all, I am new here and want to say hello.

I have a few questions. I received my Antminer S3 Batch 6 about a week ago. Today I upgraded the firmware to the latest firmware that was on bitmains website.

Prior to upgrading to the latest firmware, I could use putty to log into it and edit the config file to OC it to freq 225 from 218.75. It raised the hash rate but I was getting some HW errors so I put it back to 218.75 and no more HW errors. Well, after upgrading to the latest firmware, I decided to OC it a bit to see how it performs. First I set it to 225 using Putty. I then rebooted the miner and it appears that it is still operating at the stock frequency. I tried some other frequencies and all give me the same results. The frequency according to the web gui on the antminer still shows the stock frequency.

Prior to updating the firmware, if I changed the frequency, it was shown on the Antminer status page, the new frequency. Now with the new firmware, it stays at 218.75 on the status page. No matter what frequency I choose using putty. I included a screenshot of the miners status page. I have it set at the stock speed. With the old firmware I had 0 HW errors no matter how long it ran at stock speed. Now with the new firmware, I have HW errors(though not many) and I can nolonger Overclock. Is this normal.

My screenshot is showing a nice hash rate but it isn't consistently this high. It fluctuates greatly.

I am also curious what a few things on the status page means? Such as:Diff. DiffA#, DiffR#, DiffS#, LSDiff, LSTime?

I am using a Rosewill Lightning 1300 PSU. I have 4 separate PCIe 6 pin connectors connected. Is this PSU a good PSU for mining? I am hoping to connect an S1 and a S3+ also to this PSU. Think that will be too much for this PSU?

Sorry for all these questions. I am a newbie trying to learn this all at once. The more I read the more overwhelmed I feel.

Thanx in advance for any responses. Sorry if these questions have already been answered.

http://img.photobucket.com/albums/v400/Plumpkatt1/Antminer/s3_zps0ce4cebe.jpg

They changed the way that you change the frequency in the latest firmware. Instead of modifying the asic-freq file (which it appears to ignore now) you now instead make the changes via the 'Advanced Settings' tab in the 'Miner Configuration' area of the console.
Post
Topic
Board Hardware
Re: ANTMINER S3 Discussion and Support Thread.
by
lordmykl
on 15/08/2014, 04:51:44 UTC
I would strongly suggest not upgrading to the newest firmware!
(antMiner_S320140811.bin)

Effect on hashrate as reported at pool - 30 mins:

https://www.evernote.com/shard/s91/sh/92474b28-f2dd-4e45-ba72-7b5f74eff5a2/f74007a355d29198760d9391ef613c4a/deep/0/P2Pool-Graphs.png

Miner dashboard - 30 minutes:

https://www.evernote.com/shard/s91/sh/973026a8-27e4-4ff9-bd1e-2918cc73c308/b6f9c5c0f81154d1c6eb5a38a126cf64/deep/0/Ant-Miner.png

It changed the frequency to 237.5 according to the new advanced settings tab under miner configuration, but it does not show any frequency on miner stats page (above).

Best speed seen since upgrade: 119.27GH/s

Average speed prior to upgrade: 447.82GH/s (@Freq 225, surprisingly not an option under advanced settings)



That happened to me too, after the firmware upgrade it automatically changed me from stock 218.75 to 237.5 and the hashrate went down to 100 Gh/s with the frequency not showing up in the console. If you change it to 218.75M or 250M in Advanced Configuration, however, it goes back to mining at rates you'd expect at those frequencies. For whatever reason the upgrade switches it to 237.5 and it simply doesn't work.

Interestingly enough, if I SSH into the box, the asic-freq file shows me running at a different rate than the Advanced Settings tab and the status page show. Whatever they did in the firmware upgrade apparently bypasses the asic-freq file to make the changes. In any case, I have my four 'well-behaved' miners running at 250W now, and the two trouble children that don't OC well running at 218.75 on the new firmware and all seems fine for now. But agreed, the firmware update didn't seem to help much and makes me a bit nervous now.
Post
Topic
Board Hardware
Re: ANTMINER S3 Discussion and Support Thread.
by
lordmykl
on 14/08/2014, 01:30:28 UTC
And this is how you convert an old bathroom into a 2.6 Th/s antminer S3 farm.  Smiley

https://eesx0q.bn1.livefilestore.com/y2m8cId5TQ9xfY-agtYrGO-LA23xL36vET3oUeb2T0Go9S9iDsYscHNmthd_MYl4Q6id9gCFoV6sCWRbgdFGWl4yZaVWrF0UOo551Jz_V0Mc82rh852b_5TL-eU9fqQDQcP/ToiletMiner%20-%20Small.jpg?psid=1

All six miners and Corsair 750W PSUs exhaust out the back window. Fresh air is drawn through a cracked window on the opposite side of the bathroom. Each miner is stable at 218.75 stock frequency and averages 440 Gh/s per miner. 39C-40C average temps on each. I opted for one PSU per miner as I may decide to OC and got a good deal on them.

May never ROI at my electricity rates but I'm more of a hobbyist anyway...and this was a fun project. Smiley
YOU NEED 6 MORE.. NICE JOB
Thanks! I broke down and ordered twelve more of the S3+ models that went on sale as part of Batch 8. Suffice it to say they won't fit into this bathroom though...I'll be putting them into a custom built room in a property I own that I previously used to host twelve of the S1s. That should give me at least 8 Th/s by the end of September. Smiley
Post
Topic
Board Hardware
Re: ANTMINER S3 Discussion and Support Thread.
by
lordmykl
on 13/08/2014, 23:33:31 UTC
And this is how you convert an old bathroom into a 2.6 Th/s antminer S3 farm.  Smiley

https://eesx0q.bn1.livefilestore.com/y2m8cId5TQ9xfY-agtYrGO-LA23xL36vET3oUeb2T0Go9S9iDsYscHNmthd_MYl4Q6id9gCFoV6sCWRbgdFGWl4yZaVWrF0UOo551Jz_V0Mc82rh852b_5TL-eU9fqQDQcP/ToiletMiner%20-%20Small.jpg?psid=1

All six miners and Corsair 750W PSUs exhaust out the back window. Fresh air is drawn through a cracked window on the opposite side of the bathroom. Each miner is stable at 218.75 stock frequency and averages 440 Gh/s per miner. 39C-40C average temps on each. I opted for one PSU per miner as I may decide to OC and got a good deal on them.

May never ROI at my electricity rates but I'm more of a hobbyist anyway...and this was a fun project. Smiley