Pages:
Author

Topic: [GUIDE] GridSeed GC3355 5 Chip Setup/power/windows/linux/rpi by UnicornHasher - page 67. (Read 365630 times)

legendary
Activity: 1270
Merit: 1000
Has anyone been able to get the cgminer 3.7.2 (for gridseed) to work in linux instead of windows like what is shown here? http://cryptomining-blog.com/1262-download-cgminer-3-7-2-for-windows-scrypt-mining-on-gridseed-5-chip-gc3355-asics/

Thanks.

Yes, it appears to be working great. See my screenshot a few posts up.
member
Activity: 99
Merit: 10
Has anyone been able to get the cgminer 3.7.2 (for gridseed) to work in linux instead of windows like what is shown here? http://cryptomining-blog.com/1262-download-cgminer-3-7-2-for-windows-scrypt-mining-on-gridseed-5-chip-gc3355-asics/

Thanks.
MZD
full member
Activity: 189
Merit: 100
[1970-01-01 00:00:19] USB bus not found, try to open the USB controller power


Has one of my USB hubs shit itself? The other one shows all miners just fine....this one doesn't show any.
legendary
Activity: 1270
Merit: 1000


whats the deal with the low WU? I've just noticed that on mine and it seems that everywhere I look people's WU is nowhere close to their hash rate. All of my gpu miners have been around 95% WU to khash.

Is this an asic thing?
 

Here's my cgminer running 10 Gridseeds:  http://imgur.com/Lw7jEIK

Truth be told I never learned exactly what WU meant...so if you're inclined to explain I'd appreciate it. Smiley

from my google searches before I posted this:

"cgminer WU is the Work Utility defined as the number of diff1 shares work / minute"

so pretty much what that means to me is it's the work submitted to the pool, the higher the better. The low WU numbers would seem like it's not submitting much completed work back to the pool unless I'm missing something...

Thanks. Here is my cgminer running 10: http://i.imgur.com/Jq5imub.png
Running for about an hour. You can see the one with HW of 10.

5 on one power supply is using 0.80 amps/49.3-50.4 watts (fans on - power supply model 11PWR002-360W).
10 on one power supply is using 1.40-1.45 amps/90.5-95.1 watts (fans on - power supply model 11PWR002-360W).

Going to wire up 10 more on a second power supply....which brings up an interesting question. What are the miners with over 10 USB devices doing about the display of so many in cgminer? Guess I'll just have to maximize my SSH screen. Not a bad problem to have. Smiley
sr. member
Activity: 376
Merit: 250
After eliminating cables and power there is the fact the boards and chips are all slightly different grades or qualities.  Same thing with GPU's you should tune them individually.  I really wish there was an easier way to clock them in 1Mhz increments.

Yep, I assumed as much...I have 5 "identical" MSI 7950's and each of them has their own "personality"...so my cgminer.conf is setup to take that into account.

How do you set config settings on an individual level?  I presume via minerd? 


How do you keep track of which miner is which USB device?  It seems that each time the RasPi starts up they get all "mixed" up so ACM0 is now ACM9 some such.  Or am I completely dumb?

That is a great question!

Here is something easy to script on startup using a lot of the scripts in the linux section of the OP.

Code:
ls -la /dev/serial/by-id/usb-STMicroelectronics_STM32_Virtual_COM_Port_8D*

/dev/serial/by-id/usb-STMicroelectronics_STM32_Virtual_COM_Port_XXXXXXXXXXXX-if00 -> ../../ttyACM0

Which shows all gridseeds there serial number and their com port.

Code:
ls -la /dev/serial/by-path/

Which shows all devices by path.  Path can be hard to decipher unless you see it visually:

Code:
lsusb -t 

Shows all usb devices in a bus/device tree.

Using the above device by serial number code you can mine and program each instance separately with something like mine-SERIALNUMBER.sh which contains:

Code:
#!/bin/bash
cd /home/miner/cpuminer
screen -dmS $1 ./minerd --options --options -G /dev/$i
sleep 1

then modify this to kick them off and tie the serial number to the device:

Code:
for i in ` ls -1 /dev/ttyACM* | cut -d "/" -f 3`
do
echo "Device: $i"
echo -n "Is at serial: "
ls -la /dev/serial/by-id/ | grep $i | cut -d "-" -f 2|cut -d "_" -f 6
SERIAL=`ls -la /dev/serial/by-id/ | grep $i | cut -d "-" -f 2|cut -d "_" -f 6`
echo ./mine-$SERIAL.sh $i
done

I think I'll write all of my miners to use that system now that you mention it.

 

WOW!  I didn't realize the scope of the question I asked.  Ok, I think this is the part where I say, "That's way over my head!"
donator
Activity: 686
Merit: 519
It's for the children!


whats the deal with the low WU? I've just noticed that on mine and it seems that everywhere I look people's WU is nowhere close to their hash rate. All of my gpu miners have been around 95% WU to khash.

Is this an asic thing?
 

Here's my cgminer running 10 Gridseeds:  http://imgur.com/Lw7jEIK

Truth be told I never learned exactly what WU meant...so if you're inclined to explain I'd appreciate it. Smiley

from my google searches before I posted this:

"cgminer WU is the Work Utility defined as the number of diff1 shares work / minute"

so pretty much what that means to me is it's the work submitted to the pool, the higher the better. The low WU numbers would seem like it's not submitting much completed work back to the pool unless I'm missing something...

there is some rule about waiting a few days for WU to get a decent average.
newbie
Activity: 38
Merit: 0


whats the deal with the low WU? I've just noticed that on mine and it seems that everywhere I look people's WU is nowhere close to their hash rate. All of my gpu miners have been around 95% WU to khash.

Is this an asic thing?
 

Here's my cgminer running 10 Gridseeds:  http://imgur.com/Lw7jEIK

Truth be told I never learned exactly what WU meant...so if you're inclined to explain I'd appreciate it. Smiley

from my google searches before I posted this:

"cgminer WU is the Work Utility defined as the number of diff1 shares work / minute"

so pretty much what that means to me is it's the work submitted to the pool, the higher the better. The low WU numbers would seem like it's not submitting much completed work back to the pool unless I'm missing something...
donator
Activity: 686
Merit: 519
It's for the children!
After eliminating cables and power there is the fact the boards and chips are all slightly different grades or qualities.  Same thing with GPU's you should tune them individually.  I really wish there was an easier way to clock them in 1Mhz increments.

Yep, I assumed as much...I have 5 "identical" MSI 7950's and each of them has their own "personality"...so my cgminer.conf is setup to take that into account.

How do you set config settings on an individual level?  I presume via minerd? 


How do you keep track of which miner is which USB device?  It seems that each time the RasPi starts up they get all "mixed" up so ACM0 is now ACM9 some such.  Or am I completely dumb?

That is a great question!

Here is something easy to script on startup using a lot of the scripts in the linux section of the OP.

Code:
ls -la /dev/serial/by-id/usb-STMicroelectronics_STM32_Virtual_COM_Port_8D*

/dev/serial/by-id/usb-STMicroelectronics_STM32_Virtual_COM_Port_XXXXXXXXXXXX-if00 -> ../../ttyACM0

Which shows all gridseeds there serial number and their com port.

Code:
ls -la /dev/serial/by-path/

Which shows all devices by path.  Path can be hard to decipher unless you see it visually:

Code:
lsusb -t 

Shows all usb devices in a bus/device tree.

Using the above device by serial number code you can mine and program each instance separately with something like mine-SERIALNUMBER.sh which contains:

Code:
#!/bin/bash
cd /home/miner/cpuminer
screen -dmS $1 ./minerd --options --options -G /dev/$i
sleep 1

then modify this to kick them off and tie the serial number to the device:

Code:
for i in ` ls -1 /dev/ttyACM* | cut -d "/" -f 3`
do
echo "Device: $i"
echo -n "Is at serial: "
ls -la /dev/serial/by-id/ | grep $i | cut -d "-" -f 2|cut -d "_" -f 6
SERIAL=`ls -la /dev/serial/by-id/ | grep $i | cut -d "-" -f 2|cut -d "_" -f 6`
echo ./mine-$SERIAL.sh $i
done

I think I'll write all of my miners to use that system now that you mention it.

 
sr. member
Activity: 376
Merit: 250


whats the deal with the low WU? I've just noticed that on mine and it seems that everywhere I look people's WU is nowhere close to their hash rate. All of my gpu miners have been around 95% WU to khash.

Is this an asic thing?
 

Here's my cgminer running 10 Gridseeds:  http://imgur.com/Lw7jEIK

Truth be told I never learned exactly what WU meant...so if you're inclined to explain I'd appreciate it. Smiley
newbie
Activity: 38
Merit: 0


whats the deal with the low WU? I've just noticed that on mine and it seems that everywhere I look people's WU is nowhere close to their hash rate. All of my gpu miners have been around 95% WU to khash.



Here's a shot of a couple of my gpu's.



Is this an asic thing?
 
sr. member
Activity: 376
Merit: 250
Here's what my Scripta+RasPi+Andareed's cgminer looked like when I tested it Friday:  http://imgur.com/38OUKz5

I've stopped that setup for today as I'm trying to spend some time to isloate why that 1 miner in the dashboard seems to throw way more HW errors than the rest.  Maybe a bad cable, port, or something else...

Please post if you figure it out. One of my miners is also throwing more HW errors than the others when I run at 850. At 800 I rarely get any HW errors. I am guessing the one miner just is not that strong.

Ok, so I've confirmed its NOT any of the following:

- USB cable // swapped out several and no change
- Power cable // swapped out several and no change
- USB Port // swapped ports and no change -- also tried putting "good" miners on this port and they performed just fine

So I think miaviator hit it on the head -- each chip has it's own ability and as such should be tuned individually.
sr. member
Activity: 376
Merit: 250
After eliminating cables and power there is the fact the boards and chips are all slightly different grades or qualities.  Same thing with GPU's you should tune them individually.  I really wish there was an easier way to clock them in 1Mhz increments.

Yep, I assumed as much...I have 5 "identical" MSI 7950's and each of them has their own "personality"...so my cgminer.conf is setup to take that into account.

How do you set config settings on an individual level?  I presume via minerd? 


How do you keep track of which miner is which USB device?  It seems that each time the RasPi starts up they get all "mixed" up so ACM0 is now ACM9 some such.  Or am I completely dumb?
donator
Activity: 686
Merit: 519
It's for the children!
Here's what my Scripta+RasPi+Andareed's cgminer looked like when I tested it Friday:  http://imgur.com/38OUKz5

I've stopped that setup for today as I'm trying to spend some time to isloate why that 1 miner in the dashboard seems to throw way more HW errors than the rest.  Maybe a bad cable, port, or something else...

Please post if you figure it out. One of my miners is also throwing more HW errors than the others when I run at 850. At 800 I rarely get any HW errors. I am guessing the one miner just is not that strong.

After eliminating cables and power there is the fact the boards and chips are all slightly different grades or qualities.  Same thing with GPU's you should tune them individually.  I really wish there was an easier way to clock them in 1Mhz increments.
donator
Activity: 686
Merit: 519
It's for the children!
Hmmm, hadn't thought that I could run more than 5 miners on each 12v 30a 360w led switching power supply but if your running scrypt then 5 only uses about 55W!

Going to wire up 5 more on each PS since my vendor only shipped 2 out of 4 so far.

I have 10 running at under 70 watts total from the wall.
legendary
Activity: 1270
Merit: 1000
Here's what my Scripta+RasPi+Andareed's cgminer looked like when I tested it Friday:  http://imgur.com/38OUKz5

I've stopped that setup for today as I'm trying to spend some time to isloate why that 1 miner in the dashboard seems to throw way more HW errors than the rest.  Maybe a bad cable, port, or something else...

Please post if you figure it out. One of my miners is also throwing more HW errors than the others when I run at 850. At 800 I rarely get any HW errors. I am guessing the one miner just is not that strong.
sr. member
Activity: 378
Merit: 250
Hmmm, hadn't thought that I could run more than 5 miners on each 12v 30a 360w led switching power supply but if your only running scrypt then 5 only uses about 55W!

Going to wire up 5 more on each PS since my vendor only shipped me 2 out of 4 so far.

Well, based on your data, you can run around 30 pods on one psu....
I'd keep it to 20 though so there's plenty of overhead, just in case Wink
And, do it at your own risk! of course. Wink
Wolfey2014
legendary
Activity: 1270
Merit: 1000
Hmmm, hadn't thought that I could run more than 5 miners on each 12v 30a 360w led switching power supply but if your running scrypt then 5 only uses about 55W!

Going to wire up 5 more on each PS since my vendor only shipped 2 out of 4 so far.
sr. member
Activity: 378
Merit: 250
Worldly did you notice a drop in power since the fans have been snipped?(in watts)

Ok, just finished cutting and taping the wires on the fans for all 10 miners. 

Before:  ~110watts
After:  ~83watts

I don't have a decibel meter, but WOW its so quiet by comparison!  Hopefully these will keep chugging along...

I guess this means I kiss my 30 day warranty goodbye!  Grin

wow, these little suckers are really efficient scrypt miners... 8 - 2.7watts = 5.3 watts / 350khs lol super efficient

Yeah, I'm guessing I could squeeze out a bit more if these were connected to higher quality PSU (i.e. 80+ platinum)....also one of the silver PSU's fan always stays on...while the other has a thermal sensor and only turns on when needed.  The 2nd one I bought later from Amazon so it's not the exact same as the ones supplied by the seller.  I had to get the 2nd one because one of the 2 original PSU's burned out on Day 3 that I got them.

Yo WB,
looks like you're having fun today.
I decided to put a fan back on one of my pods and stick it in the middle of the other 4 close in so they all get cooled by the center fan. Works like a charm! With no fan they cook at 102*F....with the one fan, they are all running at around 80* F....nice and cool...But I doubt 102* is a big deal either. I don't mind the one fan running. Can hardly hear it.

How many pods are you running, WB?
Maybe now, you can power all of them off of one power supply. Those LED sign psu's are around 360W, right?

I just ordered another pod. Should be here mid-week....Gonna run 6 now. And as I can afford it, I'll keep adding them as I go.

I'm trying ScryptGuild.com multi pool. Was on Litecoinpool.org but SG is supposed to pay 30% to 40% more per day than just mining straight LTC. SG mines LTC, Doge plus many others....it ads up quick! I want maximum profit per hash out of these things. $$$

Wolfey2014



The ambient in the room is keeping mine cool...I don't know how to measure the temps...does it show up on cgminer somewhere? 

I'm running 10 miners w/out fans over night to see how they hold up.

Yeah, the PSUs are 360watts, 12v, 6amps.

I've been using magepool.com for the same reason...however mining straight LTC isn't too bad these days either.  Incidentally let me know how your miners deal with higher difficulty coins...from what I've been reading folks have been theorizing that these don't like higher difficulties...that's part of the reason I'm running them on magepool.com as TheMage stated his pool isn't mining higher diff coins.



I'm using an infrared thermometer gun to monitor temps.
Your math is a tad off there mate, 360W @ 12V,,, actually 13.8V to 14.2V is around 25 Amps,without being exact.
You've got plenty of power in that single psu to cover 10+ miners easily!
Wolfey2014
sr. member
Activity: 376
Merit: 250
Worldly did you notice a drop in power since the fans have been snipped?(in watts)

Ok, just finished cutting and taping the wires on the fans for all 10 miners. 

Before:  ~110watts
After:  ~83watts

I don't have a decibel meter, but WOW its so quiet by comparison!  Hopefully these will keep chugging along...

I guess this means I kiss my 30 day warranty goodbye!  Grin

wow, these little suckers are really efficient scrypt miners... 8 - 2.7watts = 5.3 watts / 350khs lol super efficient

Yeah, I'm guessing I could squeeze out a bit more if these were connected to higher quality PSU (i.e. 80+ platinum)....also one of the silver PSU's fan always stays on...while the other has a thermal sensor and only turns on when needed.  The 2nd one I bought later from Amazon so it's not the exact same as the ones supplied by the seller.  I had to get the 2nd one because one of the 2 original PSU's burned out on Day 3 that I got them.

Yo WB,
looks like you're having fun today.
I decided to put a fan back on one of my pods and stick it in the middle of the other 4 close in so they all get cooled by the center fan. Works like a charm! With no fan they cook at 102*F....with the one fan, they are all running at around 80* F....nice and cool...But I doubt 102* is a big deal either. I don't mind the one fan running. Can hardly hear it.

How many pods are you running, WB?
Maybe now, you can power all of them off of one power supply. Those LED sign psu's are around 360W, right?

I just ordered another pod. Should be here mid-week....Gonna run 6 now. And as I can afford it, I'll keep adding them as I go.

I'm trying ScryptGuild.com multi pool. Was on Litecoinpool.org but SG is supposed to pay 30% to 40% more per day than just mining straight LTC. SG mines LTC, Doge plus many others....it ads up quick! I want maximum profit per hash out of these things. $$$

Wolfey2014



The ambient in the room is keeping mine cool...I don't know how to measure the temps...does it show up on cgminer somewhere? 

I'm running 10 miners w/out fans over night to see how they hold up.

Yeah, the PSUs are 360watts, 12v, 6amps.

I've been using magepool.com for the same reason...however mining straight LTC isn't too bad these days either.  Incidentally let me know how your miners deal with higher difficulty coins...from what I've been reading folks have been theorizing that these don't like higher difficulties...that's part of the reason I'm running them on magepool.com as TheMage stated his pool isn't mining higher diff coins.

sr. member
Activity: 378
Merit: 250
Worldly did you notice a drop in power since the fans have been snipped?(in watts)

Ok, just finished cutting and taping the wires on the fans for all 10 miners. 

Before:  ~110watts
After:  ~83watts

I don't have a decibel meter, but WOW its so quiet by comparison!  Hopefully these will keep chugging along...

I guess this means I kiss my 30 day warranty goodbye!  Grin

wow, these little suckers are really efficient scrypt miners... 8 - 2.7watts = 5.3 watts / 350khs lol super efficient

Yeah, I'm guessing I could squeeze out a bit more if these were connected to higher quality PSU (i.e. 80+ platinum)....also one of the silver PSU's fan always stays on...while the other has a thermal sensor and only turns on when needed.  The 2nd one I bought later from Amazon so it's not the exact same as the ones supplied by the seller.  I had to get the 2nd one because one of the 2 original PSU's burned out on Day 3 that I got them.

Yo WB,
looks like you're having fun today.
I decided to put a fan back on one of my pods and stick it in the middle of the other 4 close in so they all get cooled by the center fan. Works like a charm! With no fan they cook at 102*F....with the one fan, they are all running at around 80* F....nice and cool...But I doubt 102* is a big deal either. I don't mind the one fan running. Can hardly hear it.

How many pods are you running, WB?
Maybe now, you can power all of them off of one power supply. Those LED sign psu's are around 360W, right?

I just ordered another pod. Should be here mid-week....Gonna run 6 now. And as I can afford it, I'll keep adding them as I go.

I'm trying ScryptGuild.com multi pool. Was on Litecoinpool.org but SG is supposed to pay 30% to 40% more per day than just mining straight LTC. SG mines LTC, Doge plus many others....it ads up quick! I want maximum profit per hash out of these things. $$$

Wolfey2014

Pages:
Jump to: