Search content
Sort by

Showing 8 of 8 results by b00m3rang
Post
Topic
Board Hardware
Re: Announcement: Bitmain launches AntMiner solution, 0.68 J/GH on chip
by
b00m3rang
on 12/12/2014, 18:14:23 UTC
only this message Sad

what can i do, maybe u can help me?? Smiley

Sorry, I'm not sure what to do about that one.  My only problem was that I needed to log in and change the IP address, using the 'ifconfig' command.  It's saying it can't mount the root partition, which basically means it can't even see the operating system files in order for it to boot.

I'm not really familiar with OpenWRT, but the miner's software seems to be largely based on it, if you can't find help here, you might try a forum for that.
Post
Topic
Board Hardware
Re: Announcement: Bitmain launches AntMiner solution, 0.68 J/GH on chip
by
b00m3rang
on 26/11/2014, 11:48:21 UTC
A friend mentioned that occasionally one of his AntMiners would randomly stop hashing, but would start right back up after restarting.  I thought it might be handy to write a script to do that automatically to minimize downtime without taxing the miner by power cycling it.  This ash script, triggered by cron, checks every 10 minutes to see how long it's been since the last work was submitted, and if it's been >10 minutes it will restart the miner and log the time in /root/watchdog.log.

Just save this as /root/watchdog.ash, make it executable, and add the job to Scheduled Tasks.

Code:
#!/bin/ash
# /root/watchdog.ash for AntMiner - 2014.11.26 - by b00m3rang

# You must run 'chmod 755 /root/watchdog.ash' or set +x in SCP client,
# and add the following line to "Scheduled Tasks" under "System":
# * */6  *   *   *     /root/watchdog.ash

# Assgn variables for current time and time of last work accepted
currtime=$(date +"%s")
lastwork=$(cgminer-monitor 2>&1 1>/dev/null | grep A= | awk '{ print $7 }')

# Calculate seconds since last work accepted
sincework=$(echo $((currtime-lastwork)))

# If no work submitted in the last 10 minutes, log and reboot
if [ $sincework -gt 600 ]; then
    echo `date` >> /root/watchdog.log
    reboot
fi

Let me know if you have any problems or improvements.
Post
Topic
Board Hardware
Re: Announcement: Bitmain launches AntMiner solution, 0.68 J/GH on chip
by
b00m3rang
on 24/11/2014, 15:33:52 UTC
I was having a problem with my AntMiner S3+ that had become unresponsive and inaccessible after I ticked a wrong check box while trying to get fancy with the network config.  I was trying to connect the miner via WiFi, and also use it as an access point for my Raspberry Pi that's running a Gridseed, and I bridged the wrong two interfaces.  I've seen a lot of posts in this thread with suggestions on how to fix it, but they are all either incorrect, incomplete, or unclear.

First off, no amount of fiddling with the reset button did anything at all, and I tried for many hours.  Pressing the button once does nothing, holding it down for >10sec makes it restart as does double-clicking it, holding the button and then starting it up will just cause it not to boot.  Someone said to start it, wait 3 minutes, hold the button for 15 seconds, do that again, and power cycle it... which didn't work, either.

I was able to fix it by connecting to the serial debugging port on the interface board with a USB to serial adapter, and editing the /etc/config/networking file with the correct settings and rebooting.  The post that gave me the hint about the serial port was a little ambiguous on the TX/RX pinouts, so I wanted to post a pic that should be self-explanatory.  I'm using a Parallax 'Propeller Plug' that I got for about $10 when I built a Propeller on a breadboard.  The driver makes it show up as a regular COM port, and I used PuTTY under Windows to connect to it.  The pin headers are just sitting in there, the worst that might happen with a loose connection is some corrupt characters in the terminal.  The reset pin is not needed.

Hope it helps!

http://i.imgur.com/Dm9NdoR.jpg
Post
Topic
Board Trading Discussion
Re: When 2 exchanges are $100 apart on BTC... (Mt.Gox vs BTC-E right now)
by
b00m3rang
on 09/01/2014, 02:45:21 UTC
I didn't know all that about Mt.Gox.  Thanks for the heads up.  They seem to be listed in a lot of places as a reputable exchange... maybe that has changed.

I've only purchased through VirWox, buying SLL via PayPal, exchanging them for BTC, and withdrawing.  Is there a better way you'd recommend?  (Trying to find good info on the forum, but there's a lot to search through, and the 90sec search delay is painful).  Many of them either use questionable payment processors, or don't deal with US customers at all.
Post
Topic
Board Beginners & Help
Topic OP
Keeping your Windows machine responsive while CPU mining
by
b00m3rang
on 09/01/2014, 00:20:20 UTC
CPU mining is obviously much slower than GPU, but since my machine is always running anyway, a few extra hashes couldn't hurt.

Just a tip I thought I'd share: if you add 'start /idle /b' to the beginning of your batch file, the process will start at a lower priority, and will only use the resources that are entirely unused by other apps, as opposed to starting with the same priority as other apps you're running.  (The '/b' means run in current window and don't open a new one)

Also, you can specify how many threads minerd.exe uses, and specify one less thread than you have CPU cores, making sure there's always one core available to handle the GUI.  Do this by adding '-t 6' at the end (if you have 4 cores with hyperthreading).

Here's my batch file.  You're welcome to use this example and mine for me as long as you'd like (you know... just to get the hang of it). Smiley

Code:
start /idle /b .\cgminer-3.8.4-windows\CPUMiner\minerd.exe -o stratum+tcp://spare.ozco.in:9333/ -u b00m3rang.pctcpu -p asdf -t 6


I also use the 'start /idle /b' for cgminer and cudaminer, since it does use some CPU power to interface with your ASIC/GPU.  It doesn't seem to slow down the hash rate at all, and I can still play Guild Wars 2 on low settings while mining 3 different ways.
Post
Topic
Board Trading Discussion
Topic OP
When 2 exchanges are $100 apart on BTC... (Mt.Gox vs BTC-E right now)
by
b00m3rang
on 09/01/2014, 00:02:05 UTC
What's to stop people from buying on one exchange and selling on the other over and over?

Shouldn't that equalize the price fairly quickly?
Post
Topic
Board Beginners & Help
Topic OP
MOOTCoin? The built-in free mining pool sounds good
by
b00m3rang
on 05/01/2014, 15:00:23 UTC
I want to get started mining as soon as possible since it's a new coin... but I don't see a download link, and I didn't find anything on Google.

http://bit.ly/1dDEo3B
Post
Topic
Board Beginners & Help
Re: Is it too late for poor people to start mining? Jan2014
by
b00m3rang
on 04/01/2014, 03:04:17 UTC
I'd say you're better off using your GPU and CPU to mine LTC to trade for BTC, unless you have specialized mining hardware.  I just got a bottom of the line ASICMiner Block Erupter (Icarus) that does 333KH/sec.  It does 10x more hashing than my GTX660 for, maybe 1/5 the cost, and the i7 CPU combined.  Without an ASIC, I can pull in roughly 50x more by mining LTC than by mining BTC directly.

(I was mining DOGE for a while, while it was on the way up... got sick of all the brand new stratum servers going down constantly).