Search content
Sort by

Showing 17 of 17 results by Ranma13
Post
Topic
Board Mining (Altcoins)
Re: [GUIDE] GridSeed 5-Chip USB & Blade Miner Support/Tuning
by
Ranma13
on 07/05/2014, 03:49:40 UTC
Is there a way to have cpuminer automatically find all of the Gridseed 5-chip devices rather than specify each one via the --gc3355=/dev option?
If you're on Linux, you can use this command:

Code:
minerd -o stratum+tcp://pool.com -u USERNAME -p PASSWORD --gc3355-autotune --gc3355=`ls -m /dev/ttyACM* | sed -e 's/, /,/g' | tr -d '\n'` --freq=1200
Post
Topic
Board Mining (Altcoins)
Re: GridSeed 5-chip USB miner voltage mod
by
Ranma13
on 07/05/2014, 03:42:05 UTC
I used a bruteforce search method with this script:

#!/bin/bash
# options
NUM_DEVS=2

# initialize an Array
DEV=(/dev/ttyACM0,/dev/ttyACM1);
 
## Script Begin ##
 COUNTER=0
 FOUND=0
 echo -e "Searching for devices...please wait\t"
 while (( 1 )); do
          if [ -c /dev/ttyACM$COUNTER ]; then
                  DEV[$FOUND]="/dev/ttyACM$COUNTER";
                  (( FOUND++ ))
          fi
          if (( $FOUND >= $NUM_DEVS )); then
                  break
          fi
          ((COUNTER++))
          sleep .5
# Change Counter value check based on number of devices
          if (( $COUNTER >=10 )); then
                  echo -e "Found only $FOUND devices out of $NUM_DEVS...Please check USB connections & devices.\n\nExiting...\n"
                  exit 1
          fi
  done
 
  echo -e "Found devices ${DEV[0]}, ${DEV[1]}\n"
### End bash script

HTH...

There's no need for something so complicated. This will work just fine:

Code:
minerd -o stratum+tcp://pool.com -u USERNAME -p PASSWORD --gc3355-autotune --gc3355=`ls -m /dev/ttyACM* | sed -e 's/, /,/g' | tr -d '\n'` --freq=1200
Post
Topic
Board Mining (Altcoins)
Re: [GUIDE] GridSeed 5-Chip USB & Blade Miner Support/Tuning
by
Ranma13
on 03/05/2014, 05:35:08 UTC
Is there any way to tell which Gridseed is not running at maximum speed using Sandor's cpuminer? For example, in this screenshot:

http://i.imgur.com/piH2iDA.png

Gridseed #1 is running really slowly, which probably means that I need to either re-seat the heatsink or resolder the resistor. However, how do I determine which one is Gridseed #1? When I unplug the USB cable to a Gridseed, the UI doesn't update to let me know that it's dead, and every Gridseed looks like it's still hashing.
Post
Topic
Board Mining (Altcoins)
Re: GridSeed 5-chip USB miner voltage mod
by
Ranma13
on 28/04/2014, 06:06:11 UTC
Wow! That sucks! No one has EVER had this trouble like that with the R52 mod! No One! Not even green-horns!
Shit!This really bugs me! I feel for your loss! 4 good chips ruined by yet another Zig DOH!!! pod killer mod! Are you absolutely sure un-bridging and adding a resistive load to R42 is correct, Zig? Never mind.  I strongly suspect - NOT! This clicking problem only started happening after Zig's mod was introduced!
I think that Zig's mod should be killed for now, at least until the actual cause of the clicking which most likely means something permanently serious has happened and your pod is now a paper weight, is discovered. Looks like I have my work cut out for me. Thanks Zig!
Remember, R52 (aka R139-at least he got that right) mod is proven by thousands of mods to work without harming your pod, even if you make a mistake, the worst that happens is your pod stops working until the solder connections are re-done correctly or the mod is reversed. No permanent destruction! Certainly no solder melting hot chips destruction occurs! I think this makes 4 clicking pods now....That's just too many fried pods! DANGER!
Stick with R52 mod. And again, the chances of our pods ever profitably mining SHA again are slim to none and IF the mod ever has to be reversed, it can be done easily by any qualified tech. Even greenhorns can do it in a reasonable amount of time, obviously!

You really need to cut it out with the personal attacks. It's obvious to anyone who's been following this thread that you have some sort of personal vendetta against Zig for introducing an alternative mod. It doesn't matter if you've 'invented' the original mod, nobody likes an asshole and you're doling it out in droves.

And I've had the clicking issue as well, and I've only done the R52 mod. The only time I heard it though was when I plugged in the power to the USB hub, but not the 12V power. It went away after I turned on the 12V power. I thought it was kind of weird, but didn't think much of it at the time, and it never happened again except for that one time. All my Gridseeds are hashing away fine too, so I'm not sure what I did to cause it to click.
Post
Topic
Board Mining (Altcoins)
Re: GridSeed 5-chip USB miner voltage mod
by
Ranma13
on 26/04/2014, 21:26:27 UTC
I'm running 20 Gridseeds off a Raspberry Pi and did the 49.9k mod and 5V fan mod to each of them. When I use bfgminer with a clock speed of 1200 MHz, even though the app reports that I'm hashing around 10 MH/s, my pool only reports about 5.5 MH/s.

When I use sandor's cpuminer with autotune on and at 1200 MHz, the results are better. My pool reports 8.5 MH/s, but this isn't quite up to 10 MH/s. I'd expect my hashrate to be in the mid 9 MH/s range; my rejected share percentage is only around 1-3%.

Tomorrow I'm gonna try running two Raspberry Pi's with 10 Gridseeds each to see if the combined speed is higher than running one Raspberry Pi with 20 Gridseeds, but does anybody have any ideas on how I can increase the hashrate to match what I expect? I have 80 Gridseeds in all, and if I'm losing 1.5 MH/s on 20 Gridseeds, that's 6 MH/s across all 80. That's equivalent to buying another 16 unmodified Gridseeds, which is not an insignificant amount.

Are you getting HW errors?  I was only able to run the Gridseeds at 1200Mhz after I did the 49.9K mod and I put removed the stock thermal pad from the bottom of the board and applied non-conductive diamond thermal compound.  Still not all of them will run at 1200.  I run them at 1175Mhz with no HW errors.
Only a few hardware errors. The autotune takes care of optimizing the clock speed.
Post
Topic
Board Mining (Altcoins)
Re: GridSeed 5-chip USB miner voltage mod
by
Ranma13
on 26/04/2014, 12:39:16 UTC
I'm running 20 Gridseeds off a Raspberry Pi and did the 49.9k mod and 5V fan mod to each of them. When I use bfgminer with a clock speed of 1200 MHz, even though the app reports that I'm hashing around 10 MH/s, my pool only reports about 5.5 MH/s.

When I use sandor's cpuminer with autotune on and at 1200 MHz, the results are better. My pool reports 8.5 MH/s, but this isn't quite up to 10 MH/s. I'd expect my hashrate to be in the mid 9 MH/s range; my rejected share percentage is only around 1-3%.

Tomorrow I'm gonna try running two Raspberry Pi's with 10 Gridseeds each to see if the combined speed is higher than running one Raspberry Pi with 20 Gridseeds, but does anybody have any ideas on how I can increase the hashrate to match what I expect? I have 80 Gridseeds in all, and if I'm losing 1.5 MH/s on 20 Gridseeds, that's 6 MH/s across all 80. That's equivalent to buying another 16 unmodified Gridseeds, which is not an insignificant amount.
Post
Topic
Board Mining (Altcoins)
Re: GridSeed 5-chip USB miner voltage mod
by
Ranma13
on 25/04/2014, 23:32:17 UTC
Santor I dont quite get the syntax on the settings for freq

--freq=850 --gc3355-freq=/dev/ttyACM0:900

Why is freq 850 used then 900

Thanks

--freq=850 is the setting the clock speed for all the Gridseeds.
--gc3355-freq=/dev/ttyACM0:900 is setting the clock speed for a specific Gridseed. If you have multiple, you can set them like so: =/dev/ttyACM0:900,/dev/ttyACM1:850,/dev/ttyACM2:950

You can use either. I don't know what'll happen if you use both though, presumably the --gc3355-freq is more specific and will override whatever is set on --freq. If this is the case, you can set a default clock speed for all the Gridseeds and override a few that need to be set differently.
Post
Topic
Board Mining (Altcoins)
Re: GridSeed 5-chip USB miner voltage mod
by
Ranma13
on 23/04/2014, 03:47:05 UTC
I did the 49.9k resistor mod, but I'm having an issue:

http://i.imgur.com/fXkhIQq.png

For some reason, although the Gridseeds are running at 7.65 Mh/s collectively, I"m only getting around 3.6 Mh/s effective. It's like this no matter what pool I use. Is this normal, and if not, any idea on how I can fix it?
Post
Topic
Board Mining (Altcoins)
Re: GridSeed 5-chip USB miner voltage mod
by
Ranma13
on 19/04/2014, 10:56:00 UTC
I've done the voltage mod with 49.9kohm resistors and the 5V fan mod on 8 of my Gridseeds, but I'm having a problem. I'm using the Hashra image with a Raspberry Pi, but the Gridseeds are only stable up to 950 MHz. What's weird is, they run perfectly fine at 950 MHz, but the moment I try bumping it up to 1000 MHz, they basically fail to hash at all. To give an idea, at 950 MHz, my pool reports ~3.5 MH/s with about a 3-5% reject rate. At 1000 MHz, my pool reports ~0.01 MH/s with a 80-90% reject rate. Any idea what could be causing the problem?
Post
Topic
Board Mining support
Re: [GUIDE] GridSeed GC3355 5 Chip Setup/power/windows/linux/rpi by UnicornHasher
by
Ranma13
on 13/04/2014, 05:39:25 UTC
Ok. I've been using a cheap ATX power supply to power some gridseeds, now I'm going to really hack it (cut the wires). I take it, from all the googling I've done, all the yellow wires are 12 volts positive, and I just need to use the closest black wire as the ground. So that gives me power from the molex, the sata, the cpu, and the main atx bunch of wires.

I'll let you guys know. This PSU won't be used for anything else.

Yes, for the Molex connectors, the yellow is 12V, the red is 5V, and the blacks are the grounds. I would recommend that you stick to Molex connectors because you can easily buy or find the male connectors and solder them to barrel connectors to make them removable. You can buy 8-to-1 barrel splitters on eBay, cut the end off, and solder it to a Molex connector.
Post
Topic
Board Mining support
Re: [GUIDE] GridSeed GC3355 5 Chip Setup/power/windows/linux/rpi by UnicornHasher
by
Ranma13
on 13/04/2014, 05:13:29 UTC
I'm trying to get 80 Gridseeds working across 4 Raspberry Pi's (24 Gridseeds for each Raspberry Pi using Monoprice 24-port USB hubs). However, I'm running into an issue with btbartle's cgminer:

http://i.imgur.com/wbdUUuA.png

It looks like the Gridseeds are hashing, but only 3 of them have submitted shares, and a very low amount at that (and strangely, it always increments by a power of 2). Does anybody have any idea why this is happening? I've tried using the default 600 MHz speed and also using cpuminer, but the results are always the same.

I've finally figured out the source of the problem. It was the power adapters! I purchased 4 of the 20-Gridseed bundles, so I received 10 power adapters (each one can power 8 Gridseeds). After pulling my hair out for weeks, I finally narrowed the problem down to the power adapters. Only 2 of the 10 I received were working properly when powering multiple Gridseeds. When I cracked them open, it became really obvious as to why:

http://i.imgur.com/TKh1lyr.jpg

http://i.imgur.com/LfOVqlI.jpg

Look at those capacitors bulging! All 10 of them had bulging capacitors. The capacitors in the 2 power adapters that were working had the least amount of bulge, but they were bulging as well. The worst ones were even leaking, and one even had a capacitor that was loose and barely connected!

If you're using one of these power adapters and are having issues where your Gridseed miners look like they're hashing, but are not submitting shares after a few hours, you can run this simple test to see if the power adapter is at fault:

Plug the barrel connector of the power adapter directly into a Gridseed and listen to the fan noise. It should be a fairly audible whir. Next, plug the 8-to-1 barrel splitter into the power adapter, then plug one of the barrel connectors on the splitter into the Gridseed. Listen to the fan noise again. If it sounds the same, your power adapter is working properly. If it sounds like it's spinning slower, then you have a bad power adapter.

I've since switched all my Gridseeds to use an ATX power supply and now they're happily hashing away.
Post
Topic
Board Mining support
Re: [GUIDE] GridSeed GC3355 5 Chip Setup/power/windows/linux/rpi by UnicornHasher
by
Ranma13
on 09/04/2014, 04:07:01 UTC

I had my first 20 grid seeds working on a 49 port hub
and on Monday i got 30 more in
now i can not put more that 25 grid seeds on the 49 port hub if i do then all the grid seeds stop mining.
i have changed the PSU with one that has a 25amp 5v rail but its still the same
now I'm looking for a different usb hub to use.

had anyone got any of the 10 port hubs that come in the grid seed accessory pac they are not using and want to sell ?



When you say "not mining", do you mean that it's hashing, but not submitting any shares? That's the same issue I'm getting, but my limit seems to be around 7-9 Gridseeds.

Which operating system are you guys using? Or are you using controllers?

Raspberry Pi here, as well as a regular desktop. Gonna try the regular desktop again and see how many I can get running this time.
Post
Topic
Board Mining support
Re: [GUIDE] GridSeed GC3355 5 Chip Setup/power/windows/linux/rpi by UnicornHasher
by
Ranma13
on 09/04/2014, 03:34:39 UTC

I had my first 20 grid seeds working on a 49 port hub
and on Monday i got 30 more in
now i can not put more that 25 grid seeds on the 49 port hub if i do then all the grid seeds stop mining.
i have changed the PSU with one that has a 25amp 5v rail but its still the same
now I'm looking for a different usb hub to use.

had anyone got any of the 10 port hubs that come in the grid seed accessory pac they are not using and want to sell ?



When you say "not mining", do you mean that it's hashing, but not submitting any shares? That's the same issue I'm getting, but my limit seems to be around 7-9 Gridseeds.
Post
Topic
Board Mining support
Re: [GUIDE] GridSeed GC3355 5 Chip Setup/power/windows/linux/rpi by UnicornHasher
by
Ranma13
on 08/04/2014, 23:23:28 UTC
http://i.imgur.com/wbdUUuA.png
I think you will find the HUB dose not have enough power to run 24 gridseeds

what size is the PSU?


This is the Monoprice 24-port USB hub. I don't have it in front of me right now, but I think the power adapter for it is 12V at 4A = 48W. The Gridseeds are powered using 12V at 7A = 84W power bricks. Each one powers 8 Gridseeds each, and the Gridseeds run in scrypt only mode. I purchased the 20x Gridseed kit from Zoomhash, 4 of them.

i'm not sure but i dint think thats enough power on the 5v Line to power all the gridseeds.



I've tried 4 different USB hubs and it looks like the max number of Gridseeds I can get running at the same time is around 7-9. This is using the Raspberry Pi across 3 different distros (Hashra, Scripta, Zoomhash). The hubs were:

4-port USB hub - 5V @ 1 A adapter, all 4 Gridseeds working
10-port USB hub - 5V @ 1 A adapter, 8 Gridseeds working
10-port USB hub - 5V @ 2.5A adapter, 8 Gridseeds working in Scripta, 9 Gridseeds working in Hashra.
Monoprice 24-port USB hub - 5V @ 4A adapter, 7 Gridseeds working in Scripta.

So I don't think it's related to the power.
Post
Topic
Board Mining support
Re: [GUIDE] GridSeed GC3355 5 Chip Setup/power/windows/linux/rpi by UnicornHasher
by
Ranma13
on 06/04/2014, 11:45:43 UTC
http://i.imgur.com/wbdUUuA.png
I think you will find the HUB dose not have enough power to run 24 gridseeds

what size is the PSU?


This is the Monoprice 24-port USB hub. I don't have it in front of me right now, but I think the power adapter for it is 12V at 4A = 48W. The Gridseeds are powered using 12V at 7A = 84W power bricks. Each one powers 8 Gridseeds each, and the Gridseeds run in scrypt only mode. I purchased the 20x Gridseed kit from Zoomhash, 4 of them.
Post
Topic
Board Mining support
Re: [GUIDE] GridSeed GC3355 5 Chip Setup/power/windows/linux/rpi by UnicornHasher
by
Ranma13
on 06/04/2014, 11:38:10 UTC
I've run it for several days now, the screenshot was just an example. I normally use cpuminer because cgminer crashes after a few hours and disconnects all the Gridseeds, and I have to reboot the Raspberry Pi in order to get them all back.

I should be getting around 28 MH/s for 80 Gridseeds, but my pool only reports 6.5 MH/s. Strangely, one of the Raspberry Pi's has only 8 miners connected to it and each one is submitting shares, unlike the remaining 3 Raspberry Pi's that are hooked up to 24 miners each and only 1-3 Gridseeds per Pi are submitting shares. I'm not sure if it's because of the USB hub or the number of Gridseeds used, but this is the kit from Zoomhash so I'm under the assumption (perhaps erroneously) that everything should work.
Post
Topic
Board Mining support
Re: [GUIDE] GridSeed GC3355 5 Chip Setup/power/windows/linux/rpi by UnicornHasher
by
Ranma13
on 06/04/2014, 01:22:09 UTC
I'm trying to get 80 Gridseeds working across 4 Raspberry Pi's (24 Gridseeds for each Raspberry Pi using Monoprice 24-port USB hubs). However, I'm running into an issue with btbartle's cgminer:

http://i.imgur.com/wbdUUuA.png

It looks like the Gridseeds are hashing, but only 3 of them have submitted shares, and a very low amount at that (and strangely, it always increments by a power of 2). Does anybody have any idea why this is happening? I've tried using the default 600 MHz speed and also using cpuminer, but the results are always the same.