Pages:
Author

Topic: MinerEU.com 850USD THunderX3 80 USD Blizzard , 4*Blizzard @ 60 USD each - page 13. (Read 94913 times)

hero member
Activity: 896
Merit: 1000
Do you have pictures of the defective area?

This is a view of the capacitors, you can't see them whole through the vents but you can see they are all opened instead of having a flat metal surface. The one on the top left shows the material best.


This is the material still clinging on the vents.


This is the projection of the material mostly on the edge of the controller board in front of the vents:


And finally the verdict is: both blades died with the PSU.

I found a replacement PSU that I had in storage (a brand new high quality 12V 300W PSU for large LED lighting setups) to test the a2mini and here are the results...

What I believed to be a 5V line is in fact 12V (the red wire used for it is a mistake). The wiring color is wrong for the high voltage wires too: ground and neutral wire colors are swapped. You can't replace the PSU with a standard ATX one: the connectors aren't wired like standard PCI-e: the 12V and ground connections are swapped. On one of the blades there was an extra PCI-e connector whose wiring might have been standard but it was too close to the fan to be used (and the other blade doesn't have this connector).

This a2mini had other problems: I noticed a bent capacitor and one thermal pad not properly aligned on one of the blades and corrosion around the screw holes on the side panel holding the PSU. I really hope the 2 surviving a2mini will not blow up like this one.

I just asked for a refund or replacement.
member
Activity: 88
Merit: 10

Well I have already prepared my miners. Now I have another problem. A controller does not work with more than one miner? If you see in the images. I tried to connect two units to a PI. The script Zeus detects  me two usb. But only one works. You can connect more than one at a time?

Thanks.

PD. Makes a lot of NOISE.  Undecided Undecided  I'll have to put them somewhere else and try to isolate some noise.  any idea?

I used Zeusminer 3.0 Pi image with more than 1 device, it should work.
It seams MinerEU Pi image for Zeus can only work with 1 device.

You have to configure and start the miners separately in these tabs you see on top of the program.

The noise and the heat is something you have to live with. I have my miners in a separate room with some acoustic dampening material on the door. And you have to get rid of the heat. That is why I bought A2Mini, because it runs much cooler and quieter than the Zeus miners.


 

V3.0 Is Good!!! Very Thanks!! Wink
sr. member
Activity: 391
Merit: 250

Well I have already prepared my miners. Now I have another problem. A controller does not work with more than one miner? If you see in the images. I tried to connect two units to a PI. The script Zeus detects  me two usb. But only one works. You can connect more than one at a time?

Thanks.

PD. Makes a lot of NOISE.  Undecided Undecided  I'll have to put them somewhere else and try to isolate some noise.  any idea?

I used Zeusminer 3.0 Pi image with more than 1 device, it should work.
It seams MinerEU Pi image for Zeus can only work with 1 device.

You have to configure and start the miners separately in these tabs you see on top of the program.

The noise and the heat is something you have to live with. I have my miners in a separate room with some acoustic dampening material on the door. And you have to get rid of the heat. That is why I bought A2Mini, because it runs much cooler and quieter than the Zeus miners.


 
TCM
sr. member
Activity: 251
Merit: 250
Has anyone dismantled their Gridseed Blade and could post the specs of the fan please?
member
Activity: 88
Merit: 10



Well I have already prepared my miners. Now I have another problem. A controller does not work with more than one miner? If you see in the images. I tried to connect two units to a PI. The script Zeus detects  me two usb. But only one works. You can connect more than one at a time?

Thanks.

PD. Makes a lot of NOISE.  Undecided Undecided  I'll have to put them somewhere else and try to isolate some noise.  any idea?
sr. member
Activity: 391
Merit: 250
Thanks!, when I have some time I will take a look at it.
Although I'm afraid that my current A2 can't handle much more.
With the first blade at 1280 and the second at 1200Mhz. I see at the moment 12.7% HW errors. Huh
This is very strange because it used to be something like 3.7% in the past. I have to take a look at this.

Edit:
I made a mistake by calculating HW-errors*100/accepted-shares, but I should also take the stratum difficulty into account.
So the actual percentage of HW-errors is much lower.
 
hero member
Activity: 686
Merit: 500
For the people who don't know how to do this, they can follow this tutorial to ssh into the pi: http://www.youtube.com/watch?v=ZkvHHkWmKSY

When my rig is not rented anymore I will read the image from the card and upload it on dropbox for download.
hero member
Activity: 686
Merit: 500
Did you modify cgminer and recompiled it for the Raspberry Pi?
Or could you do this with some changes in a configuration file?

Mind that you need the A2 Innosilicon image for this!! Not the one from MinerEU

If you SSH into the pi using Xming and Putty you can navigate to /var/www, open 'leaflet' or any other 'notepad' kind of software and paste the following code:
Code:
function cg_status() {	
system("sudo ps -U root | grep -c cgminer > php.log",$ret_val);
$file fopen("./php.log","r");
$read fgets($file);
if($read != 0)
$cg_status "run";
else
$cg_status "stop";
return $cg_status;
}

function 
cg_stop() {
system("sudo pkill cgminer > php.log",$ret_val);
}

function 
cg_start($pool1$id1$pwd1$pool2$id2$pwd2$pool3$id3$pwd3$speed1$speed2$speed3$speed4$speed5$speed6$diff) {
cg_stop();
sleep(1);
$cmd "sudo ./cgminer -o ".$pool1." -u ".$id1." -p ".$pwd1." -o ".$pool2." -u ".$id2." -p ".$pwd2." -o ".$pool3." -u ".$id3." -p ".$pwd3." --A1Pll1 ".$speed1." --A1Pll2 ".$speed2." --A1Pll3 ".$speed3." --A1Pll4 ".$speed4." --A1Pll5 ".$speed5." --A1Pll6 ".$speed6." --diff ".$diff." --api-listen --api-network --cs 8 --stmcu 0 --hwreset --no-submit-stale --lowmem > cgminer.log &";

$file fopen("./run.sh","w");
fputs($file"#!/bin/bash\n");
        
fputs($file$cmd."\n");
        
fclose($file);

system($cmd,$ret_val);
}

function 
cg_log() {
$file fopen("./cgminer.log","r");
while(!feof($file)){
$read .= fgets($file);
}
fclose($file);
$pattern_hashmeter '/\(5s\)[^\r]+/';
preg_match_all($pattern_hashmeter$read$matches_hashmeter);
$cg_log .= $matches_hashmeter[0][count($matches_hashmeter[0])-2];
return $cg_log;
}

if (isset(
$_POST["ip"]) && isset($_POST["netmask"]) && isset($_POST["gateway"]) && isset($_POST["dns"])){
$file fopen("/etc/network/interfaces","w");
fputs($file"auto lo \n");
fputs($file"iface lo inet loopback \n");
fputs($file"iface eth0 inet static \n");
fputs($file"address ".$_POST["ip"]."\n");
fputs($file"netmask ".$_POST["netmask"]."\n");
fputs($file"gateway ".$_POST["gateway"]."\n");
fclose($file);

$file fopen("/etc/resolv.conf","w");
fputs($file"nameserver ".$_POST["dns"]."\n");
fclose($file);

$file fopen("./ip.log","w");
fputs($file$_POST["ip"]."\n");
fputs($file$_POST["netmask"]."\n");
fputs($file$_POST["gateway"]."\n");
fputs($file$_POST["dns"]."\n");
fclose($file);

system("sudo reboot > php.log",$ret_val);
}


if (isset(
$_POST["control"]))
{
if($_POST["control"] == "stop"){
cg_stop();
$cg_status "stop";
}
else{
if (isset($_POST["pool1"]) && isset($_POST["id1"]) && isset($_POST["pwd1"])){
$file fopen("./user.log","w");
fputs($file$_POST["pool1"]."\n");
fputs($file$_POST["id1"]."\n");
fputs($file$_POST["pwd1"]."\n");
fputs($file$_POST["pool2"]."\n");
fputs($file$_POST["id2"]."\n");
fputs($file$_POST["pwd2"]."\n");
fputs($file$_POST["pool3"]."\n");
fputs($file$_POST["id3"]."\n");
fputs($file$_POST["pwd3"]."\n");

fputs($file$_POST["pool1_2"]."\n");
fputs($file$_POST["id1_2"]."\n");
fputs($file$_POST["pwd1_2"]."\n");
fputs($file$_POST["pool2_2"]."\n");
fputs($file$_POST["id2_2"]."\n");
fputs($file$_POST["pwd2_2"]."\n");
fputs($file$_POST["pool3_2"]."\n");
fputs($file$_POST["id3_2"]."\n");
fputs($file$_POST["pwd3_2"]."\n");

fputs($file$_POST["group"]."\n");

fputs($file$_POST["speed1"]."\n");
fputs($file$_POST["speed2"]."\n");
fputs($file$_POST["speed3"]."\n");
fputs($file$_POST["speed4"]."\n");
fputs($file$_POST["speed5"]."\n");
fputs($file$_POST["speed6"]."\n");
fputs($file$_POST["diff"]."\n");
fputs($file$_POST["starttype"]."\n");
fclose($file);

if ($_POST["group"]==1){
cg_start($_POST["pool1"], $_POST["id1"], $_POST["pwd1"],
                                
 $_POST["pool2"], $_POST["id2"], $_POST["pwd2"],
                                
 $_POST["pool3"], $_POST["id3"], $_POST["pwd3"],
                                
 $_POST["speed1"], $_POST["speed2"], $_POST["speed3"], $_POST["speed4"], $_POST["speed5"], $_POST["speed6"],
                                
 $_POST["diff"]);
}
else{
cg_start($_POST["pool1_2"], $_POST["id1_2"], $_POST["pwd1_2"],
                                 
 $_POST["pool2_2"], $_POST["id2_2"], $_POST["pwd2_2"],
                                
 $_POST["pool3_2"], $_POST["id3_2"], $_POST["pwd3_2"],
                                
 $_POST["speed1"], $_POST["speed2"], $_POST["speed3"], $_POST["speed4"], $_POST["speed5"], $_POST["speed6"],
                                
 $_POST["diff"]);
}

$cg_status "run";
}
else
{
$cg_status "stop";
}
}
}

else
{
$cg_status cg_status();
}

$file fopen("./user.log","r");
$read fgets($file);
$pool1 $read;
$read fgets($file);
$id1 $read;
$read fgets($file);
$pwd1 $read;

$read fgets($file);
$pool2 $read;
$read fgets($file);
$id2 $read;
$read fgets($file);
$pwd2 $read;

$read fgets($file);
$pool3 $read;
$read fgets($file);
$id3 $read;
$read fgets($file);
$pwd3 $read;

$read fgets($file);
$pool1_2 $read;
$read fgets($file);
$id1_2 $read;
$read fgets($file);
$pwd1_2 $read;

$read fgets($file);
$pool2_2 $read;
$read fgets($file);
$id2_2 $read;
$read fgets($file);
$pwd2_2 $read;

$read fgets($file);
$pool3_2 $read;
$read fgets($file);
$id3_2 $read;
$read fgets($file);
$pwd3_2 $read;

$read fgets($file);
$group $read;

$read fgets($file);
$speed1 $read;
$read fgets($file);
$speed2 $read;
$read fgets($file);
$speed3 $read;
$read fgets($file);
$speed4 $read;
$read fgets($file);
$speed5 $read;
$read fgets($file);
$speed6 $read;

$read fgets($file);
$diff $read;

$read fgets($file);
$starttype $read;

fclose($file);

$file fopen("./ip.log","r");
$read fgets($file);
$ip $read;
$read fgets($file);
$netmask $read;
$read fgets($file);
$gateway $read;
$read fgets($file);
$dns $read;
fclose($file);

if (
$cg_status=="run")
$cg_log cg_log();
else
$cg_log "";

if (
$cg_status=="run")
$cg_status_color "green";
else
$cg_status_color "red";

if (
$cg_status=="run")
$cg_status_info "RUN";
else
$cg_status_info "STOP";

$cg_button_info "CGMINER SETTING CONFIRM";

//if ($cg_status=="run"){
// $cg_radio_start = '';
// $cg_radio_stop  = 'checked';
//}
//else{
$cg_radio_start 'checked';
$cg_radio_stop  '';
//}

if ($group==1){
$cg_radio_group1 'checked';
$cg_radio_group2 '';
}
else{
$cg_radio_group1 '';
$cg_radio_group2 'checked';
}

$ip_button_info "NETWORK SETTING CONFIRM";

switch(
$speed1)
{
case 1330$cg_option_speed1_1330 'selected = \"selected\"';break;
case 1320$cg_option_speed1_1320 'selected = \"selected\"';break;
case 1310$cg_option_speed1_1310 'selected = \"selected\"';break;
case 1300$cg_option_speed1_1300 'selected = \"selected\"';break;
case 1290$cg_option_speed1_1290 'selected = \"selected\"';break;
case 1280$cg_option_speed1_1280 'selected = \"selected\"';break;
default:   $cg_option_speed1_1280  'selected = \"selected\"';
}

switch(
$speed2)
{
       
case 1330$cg_option_speed2_1330 'selected = \"selected\"';break;
case 1320$cg_option_speed2_1320 'selected = \"selected\"';break;
case 1310$cg_option_speed2_1310 'selected = \"selected\"';break;
case 1300$cg_option_speed2_1300 'selected = \"selected\"';break;
case 1290$cg_option_speed2_1290 'selected = \"selected\"';break;
case 1280$cg_option_speed2_1280 'selected = \"selected\"';break;
        default:   
$cg_option_speed2_1280  'selected = \"selected\"';
}

switch(
$speed3)
{
        
case 1330$cg_option_speed3_1330 'selected = \"selected\"';break;
case 1320$cg_option_speed3_1320 'selected = \"selected\"';break;
case 1310$cg_option_speed3_1310 'selected = \"selected\"';break;
case 1300$cg_option_speed3_1300 'selected = \"selected\"';break;
case 1290$cg_option_speed3_1290 'selected = \"selected\"';break;
case 1280$cg_option_speed3_1280 'selected = \"selected\"';break;
        default:   
$cg_option_speed3_1280  'selected = \"selected\"';
}

switch(
$speed4)
{
        
case 1330$cg_option_speed4_1330 'selected = \"selected\"';break;
case 1320$cg_option_speed4_1320 'selected = \"selected\"';break;
case 1310$cg_option_speed4_1310 'selected = \"selected\"';break;
case 1300$cg_option_speed4_1300 'selected = \"selected\"';break;
case 1290$cg_option_speed4_1290 'selected = \"selected\"';break;
case 1280$cg_option_speed4_1280 'selected = \"selected\"';break;
        default:   
$cg_option_speed4_1280  'selected = \"selected\"';
}

switch(
$speed5)
{
        
case 1330$cg_option_speed5_1330 'selected = \"selected\"';break;
case 1320$cg_option_speed5_1320 'selected = \"selected\"';break;
case 1310$cg_option_speed5_1310 'selected = \"selected\"';break;
case 1300$cg_option_speed5_1300 'selected = \"selected\"';break;
case 1290$cg_option_speed5_1290 'selected = \"selected\"';break;
case 1280$cg_option_speed5_1280 'selected = \"selected\"';break;
        default:   
$cg_option_speed5_1280  'selected = \"selected\"';
}

switch(
$speed6)
{
        
case 1330$cg_option_speed6_1330 'selected = \"selected\"';break;
case 1320$cg_option_speed6_1320 'selected = \"selected\"';break;
case 1310$cg_option_speed6_1310 'selected = \"selected\"';break;
case 1300$cg_option_speed6_1300 'selected = \"selected\"';break;
case 1290$cg_option_speed6_1290 'selected = \"selected\"';break;
case 1280$cg_option_speed6_1280 'selected = \"selected\"';break;
        default:   
$cg_option_speed6_1280  'selected = \"selected\"';
}

switch(
$diff)
{
case 11 $cg_option_diff_1024 'selected = \"selected\"';break;
case 10 $cg_option_diff_512  'selected = \"selected\"';break;
case 9  $cg_option_diff_256  'selected = \"selected\"';break;
case 8  $cg_option_diff_128  'selected = \"selected\"';break;
case 7  $cg_option_diff_64   'selected = \"selected\"';break;
case 6  $cg_option_diff_32   'selected = \"selected\"';break;
case 5  $cg_option_diff_16   'selected = \"selected\"';break;
default : $cg_option_diff_128  'selected = \"selected\"';
}

if(
$starttype==1){
$cg_option_starttype_webstart '';
$cg_option_starttype_autostart 'selected = \"selected\"';

        
$file fopen("/etc/rc.local","w");
        
fputs($file"#!/bin/sh -e \n");
        
fputs($file"sleep 30 \n");
        
fputs($file"cd /var/www \n");
        
fputs($file"./run.sh \n");
        
fputs($file"exit 0 \n");
        
fclose($file);
}
else{
$cg_option_starttype_webstart 'selected = \"selected\"';
$cg_option_starttype_autostart '';

$file fopen("/etc/rc.local","w");
        
fputs($file"#!/bin/sh -e \n");
        
fputs($file"exit 0 \n");
        
fclose($file);
}

?>






A2 - OC tweak version 1.0 by Emdje











INNOSILICON A2






IP ADDRESS:   echo $ip ?> />
NETMASK: echo $netmask ?> />
GATEWAY:   echo $gateway ?> />
DNS:      echo $dns ?> />
echo $ip_button_info?>" />





GROUP 1 POOL 1 ADDR: echo $pool1 ?> />
POOL 1 ID: echo $id1 ?> />
POOL 1 PWD: echo $pwd1 ?> />

GROUP 1 POOL 2 ADDR: echo $pool2 ?> />
POOL 2 ID: echo $id2 ?> />
POOL 2 PWD: echo $pwd2 ?> />

GROUP 1 POOL 3 ADDR: echo $pool3 ?> />
POOL 3 ID: echo $id3 ?> />
POOL 3 PWD: echo $pwd3 ?> />

GROUP 2 POOL 1 ADDR: echo $pool1_2 ?> />
POOL 1 ID: echo $id1_2 ?> />
POOL 1 PWD: echo $pwd1_2 ?> />

GROUP 2 POOL 2 ADDR: echo $pool2_2 ?> />
POOL 2 ID: echo $id2_2 ?> />
POOL 2 PWD: echo $pwd2_2 ?> />

GROUP 2 POOL 3 ADDR: echo $pool3_2 ?> />
POOL 3 ID: echo $id3_2 ?> />
POOL 3 PWD: echo $pwd3_2 ?> />


GROUP 1 POOL SELECT:echo $cg_radio_group1 ?> />
                GROUP 2 POOL SELECT:echo $cg_radio_group2 ?> />


BOARD 1 SPEED:
BOARD 2 SPEED:
BOARD 3 SPEED:

BOARD 4 SPEED:
BOARD 5 SPEED:
BOARD 6 SPEED:

DEVICE INITIAL DIFF: (AUTO UP TO 4096)

START TYPE:

CGMINER START:  echo $cg_radio_start?> />
CGMINER STOP:  echo $cg_radio_stop?> />
 echo $cg_button_info?>" />










STATUS:echo $cg_status_color?>> echo $cg_status_info?>







HASHMETER:

echo $cg_log?>









Save that over the index.php that is in the /var/www folder.

This will give you the possibility to set an initial diff of 2048 as well

I have tried 1340MHz which gave about 50% HW errors so now I am trying 1300, later on (right now my rig is rented), I will try a step higher (maybe even just 5MHz).

If you are happy with it you can of course donate some btc to: 1FiHCFcP4ovbV89nGhYEMWXSZsWnGUASSe
sr. member
Activity: 391
Merit: 250
Did you modify cgminer and recompiled it for the Raspberry Pi?
Or could you do this with some changes in a configuration file?
sr. member
Activity: 391
Merit: 250
Want to over-clock the device: https://bitcointalksearch.org/topic/overclocking-a2mini-669390

someone any ideas on how to do that?

When this is possible it won't be easy, you have to modify cgminer for it.
Maybe you can get some idea from the A2 programming guide.

http://www.usbminers.nl/Innosilicon_A2_PG_v120140424.pdf

Thnx!

Seems that I will need to change the payload data fed to the chips and change the binary data of the 'io_pll_fbdiv[8:0]'  Undecided.
Should be possible, the firmware I have (Innosilicon A2 Terminator version) contains a dropdown menu with various option, maybe I can create a new entry.
Somebody any ideas?

I can program to tweak the Clock frequency with any increment I like now  Grin
Currently I programmed the options 1280 to 1330 with increments of 10MHz.
Now running at 1300MHz at a stable HW error rate of 3.7%

That is very nice, my A2Mini won't do that.
Maybe I could try it on one of the blades, the other one is not good enough for it.

I still have to replace the PSU, it was in stock they said, but that was a lie.
By the end of the week when I have the new PSU, I will try to improve upon the cooling as well.
My hope is, that with better cooling I can clock it a little bit higher.
hero member
Activity: 686
Merit: 500
Want to over-clock the device: https://bitcointalksearch.org/topic/overclocking-a2mini-669390

someone any ideas on how to do that?

When this is possible it won't be easy, you have to modify cgminer for it.
Maybe you can get some idea from the A2 programming guide.

http://www.usbminers.nl/Innosilicon_A2_PG_v120140424.pdf

Thnx!

Seems that I will need to change the payload data fed to the chips and change the binary data of the 'io_pll_fbdiv[8:0]'  Undecided.
Should be possible, the firmware I have (Innosilicon A2 Terminator version) contains a dropdown menu with various option, maybe I can create a new entry.
Somebody any ideas?

I can program to tweak the Clock frequency with any increment I like now  Grin
Currently I programmed the options 1280 to 1330 with increments of 10MHz.
Now running at 1300MHz at a stable HW error rate of 3.7%

I have increased the difficulty you can set to 2048 as well.

If anybody is interested I can look into how to provide it to you guys.



legendary
Activity: 1025
Merit: 1001
When will the 1TH miner be shipped? Orderded 19 jun
member
Activity: 88
Merit: 10
This is wrong.

You should only put the URL in the Pool Address.
The wallet address in the Worker Name.
And d=1024 in the Password.

Don't use --scrypt because this will be added automatically.
Don't use -u and -p this will be added automatically as well.

When done press Save and Restart.

Perfect!! Very THanks.  Cheesy
hero member
Activity: 686
Merit: 500
Want to over-clock the device: https://bitcointalksearch.org/topic/overclocking-a2mini-669390

someone any ideas on how to do that?

When this is possible it won't be easy, you have to modify cgminer for it.
Maybe you can get some idea from the A2 programming guide.

http://www.usbminers.nl/Innosilicon_A2_PG_v120140424.pdf

Thnx!

Seems that I will need to change the payload data fed to the chips and change the binary data of the 'io_pll_fbdiv[8:0]'  Undecided.
Should be possible, the firmware I have (Innosilicon A2 Terminator version) contains a dropdown menu with various option, maybe I can create a new entry.
Somebody any ideas?
sr. member
Activity: 391
Merit: 250
This is wrong.

You should only put the URL in the Pool Address.
The wallet address in the Worker Name.
And d=1024 in the Password.

Don't use --scrypt because this will be added automatically.
Don't use -u and -p this will be added automatically as well.

When done press Save and Restart.
member
Activity: 88
Merit: 10
Already solved, so Zeus Script. I needed to share him to take IP network.

Now, the miner does nothing. He says this:

"[29.06.2014 17:43:56] Started cgminer 3.1.1
[06/29/2014 17:43:56] Loaded configuration file conf/cgminer_ttyUSB0.conf
[06/29/2014 17:43:56] Error in configuration file, partially loaded.
[06/29/2014 17:44:00] Probing for an alive pool
[06/29/2014 17:44:00] Failed to resolve eu.wafflepool.com (wrong URL?): 3333
[06/29/2014 17:45:00] No servers were found that Could be used to get work from.
[06/29/2014 17:45:00] Please check the details from the list below of the worlds You have input
[06/29/2014 17:45:00] Most likely You have input the wrong URL, forgotten to add a port, or Have Not set-up workers
[06/29/2014 17:45:00] Pool: 0 URL: stratum + tcp :/ / eu.wafflepool.com: 3333-u 1Noj7qZRigqvpj1P5qSxHhXXXXXXXWh-pd = 1024 - scrypt User: Password haipo.2: x
[06/29/2014 17:45:00] No servers Could be used! Exiting. "

I have that wrong?

Thanks.

sr. member
Activity: 244
Merit: 250
I have already received my "Zeus ThunderX3 " and "HuracaneX3" at first seems to be all right. It has arrived well packaged and clean.

I have a problem is that the "ThunderX3" only goes 14Mhs. I connected all the blades. All seem to work, but the "script" of MinerEU just gives me 14MHs

I want to install the script of Zeus. "Zeus Controller". but I copy the image to the SD, but not to do. How to install the image on the "RaspberryPI"?. The Scrip MinerEU I installed with  SD Rabian.


I have two "ThunderX3" and the two 14Mhs. Something I'm doing wrong

Any idea?

Images:

http://i62.tinypic.com/nxrodw.jpg
http://i59.tinypic.com/2z50g7b.jpg
http://i61.tinypic.com/2yu0itf.jpg

Forgive my ignorance. THANKS,

You can write the image to SD card under Windows with a program called 'Win32DiskImager'.

http://sourceforge.net/projects/win32diskimager/



I already do. After recording the image on the SD, as I install the "zeuscontroller web" in the Pi?

Thanks.

did you change chip count in the miner tab ? if it is thunderX3, you are recommended to change chip count to 2*actual chips
sr. member
Activity: 391
Merit: 250
I have already received my "Zeus ThunderX3 " and "HuracaneX3" at first seems to be all right. It has arrived well packaged and clean.

I have a problem is that the "ThunderX3" only goes 14Mhs. I connected all the blades. All seem to work, but the "script" of MinerEU just gives me 14MHs

I want to install the script of Zeus. "Zeus Controller". but I copy the image to the SD, but not to do. How to install the image on the "RaspberryPI"?. The Scrip MinerEU I installed with  SD Rabian.


I have two "ThunderX3" and the two 14Mhs. Something I'm doing wrong

Any idea?

Images:

http://i62.tinypic.com/nxrodw.jpg
http://i59.tinypic.com/2z50g7b.jpg
http://i61.tinypic.com/2yu0itf.jpg

Forgive my ignorance. THANKS,

You can write the image to SD card under Windows with a program called 'Win32DiskImager'.

http://sourceforge.net/projects/win32diskimager/



I already do. After recording the image on the SD, as I install the "zeuscontroller web" in the Pi?

Thanks.

Yes, because it uses a static IP-address, the address will very likely be different as with the other image, that could be your problem.
Maybe you can look in the ARP table of your router to find it.

Edit:
I'm not sure about the IP-address, maybe the Zeus image is using DHCP. I,m mixing things up with the A2 image.
I don't have a Zeus miner running at the moment, so I can't check it.
member
Activity: 88
Merit: 10
I have already received my "Zeus ThunderX3 " and "HuracaneX3" at first seems to be all right. It has arrived well packaged and clean.

I have a problem is that the "ThunderX3" only goes 14Mhs. I connected all the blades. All seem to work, but the "script" of MinerEU just gives me 14MHs

I want to install the script of Zeus. "Zeus Controller". but I copy the image to the SD, but not to do. How to install the image on the "RaspberryPI"?. The Scrip MinerEU I installed with  SD Rabian.


I have two "ThunderX3" and the two 14Mhs. Something I'm doing wrong

Any idea?

Images:

http://i62.tinypic.com/nxrodw.jpg
http://i59.tinypic.com/2z50g7b.jpg
http://i61.tinypic.com/2yu0itf.jpg

Forgive my ignorance. THANKS,

You can write the image to SD card under Windows with a program called 'Win32DiskImager'.

http://sourceforge.net/projects/win32diskimager/



I already do. After recording the image on the SD, as I install the "zeuscontroller web" in the Pi?

Thanks.
sr. member
Activity: 391
Merit: 250
Want to over-clock the device: https://bitcointalksearch.org/topic/overclocking-a2mini-669390

someone any ideas on how to do that?

When this is possible it won't be easy, you have to modify cgminer for it.
Maybe you can get some idea from the A2 programming guide.

http://www.usbminers.nl/Innosilicon_A2_PG_v120140424.pdf
Pages:
Jump to: