Search content
Sort by

Showing 20 of 25 results by ismurdegus
Post
Topic
Board Mining (Altcoins)
Re: Baikal X10 ⚡OVERCLOCK⚡ Claim reward 0.2 BTC for TUTORIAL HOW TO :)⚡⚡⚡⚡
by
ismurdegus
on 04/03/2018, 08:26:20 UTC
I have some high resolution picture

https://imgur.com/a/MeXWH
Post
Topic
Board Mining (Altcoins)
Re: Baikal X10 ⚡OVERCLOCK⚡ Claim reward 0.2 BTC for TUTORIAL HOW TO :)⚡⚡⚡⚡
by
ismurdegus
on 26/02/2018, 11:30:23 UTC
Will be a dream if we can unlock the hash rate!
Post
Topic
Board Mining (Altcoins)
Re: Baikal Giant X10
by
ismurdegus
on 21/02/2018, 08:36:00 UTC
Hi Guys

It is normal that my X10 produce all these discarded?

https://imgur.com/a/xlhvI

Thanks
Post
Topic
Board Mining (Altcoins)
Re: Baikal Giant X10
by
ismurdegus
on 19/02/2018, 10:47:04 UTC
Sorry guys, I am still having problem with  Suprnova's Verge XVG Myriad-Groestl Pool

My hash rate will go from 6,000 to 12,000. Is this normal?

On the x10 interface will stay always at 10Gh/s



Thanks
Post
Topic
Board Mining (Altcoins)
Re: Baikal Giant X10
by
ismurdegus
on 19/02/2018, 10:28:25 UTC
Where they let know that the new algorithm is out?

On this forum ? On twitter?
Post
Topic
Board Mining (Altcoins)
Re: Baikal Giant X10
by
ismurdegus
on 17/02/2018, 08:08:43 UTC
try d=88

My hero.  I had assumed that since the pools said they auto-adjusted the difficulty, I wouldn't need to set it manually, but this setting worked.  Thanks!

I have the same issue with my X10

Where I suppose insert the d=88  ?

Thanks

into password

Hi
Sorry but I am little bit confuse.....

I am mining on xvg-mg.suprnova and the password is the worker password.

Is this will work on xvg-mg.suprnova? If YES, inside the password space I need wrote:  cicciod=88  (my password and d=88) ?

Thanks
need write:
yourpass d=88

Yes, you need to leave a gap between each command

No is not working for me.
I am still having up and down in hash power on the pool. From 7000KH/s to 12000KH/s .
Post
Topic
Board Mining (Altcoins)
Re: Baikal Giant X10
by
ismurdegus
on 17/02/2018, 08:01:57 UTC
try d=88

My hero.  I had assumed that since the pools said they auto-adjusted the difficulty, I wouldn't need to set it manually, but this setting worked.  Thanks!

I have the same issue with my X10

Where I suppose insert the d=88  ?

Thanks

into password

Hi
Sorry but I am little bit confuse.....

I am mining on xvg-mg.suprnova and the password is the worker password.

Is this will work on xvg-mg.suprnova? If YES, inside the password space I need wrote:  cicciod=88  (my password and d=88) ?

Thanks
need write:
yourpass d=88

Yes, you need to leave a gap between each command

Thanks I will give it a go
Post
Topic
Board Mining (Altcoins)
Re: Baikal Giant X10
by
ismurdegus
on 17/02/2018, 06:29:26 UTC
try d=88

My hero.  I had assumed that since the pools said they auto-adjusted the difficulty, I wouldn't need to set it manually, but this setting worked.  Thanks!

I have the same issue with my X10

Where I suppose insert the d=88  ?

Thanks

into password

Hi
Sorry but I am little bit confuse.....

I am mining on xvg-mg.suprnova and the password is the worker password.

Is this will work on xvg-mg.suprnova? If YES, inside the password space I need wrote:  cicciod=88  (my password and d=88) ?

Thanks
Post
Topic
Board Mining (Altcoins)
Re: Baikal Giant X10
by
ismurdegus
on 17/02/2018, 06:06:55 UTC
try d=88

My hero.  I had assumed that since the pools said they auto-adjusted the difficulty, I wouldn't need to set it manually, but this setting worked.  Thanks!

I have the same issue with my X10

Where I suppose insert the d=88  ?

Thanks
Post
Topic
Board Mining (Altcoins)
Re: Baikal Giant X10
by
ismurdegus
on 10/02/2018, 01:28:01 UTC
You are missing the crucial part when replacing the images of the OrangePI. The firmware bin file for the STM chip.

The STM chip has a specific set of algorithms pre-coded into the firmware code. You cannot get around it.

You will have to get the running bin file from a Giant B or X10's STM chip and place it in the "/media/boot/" folder and call it, "G*.bin"

When the miner reboots on the new image of the miner it will compare versions and replace the existing flashed image by entering DFU Mode.

Once updated, it will reenable the hash boards and being mining.

It's doable.



The reason behind that is that the file location and name is here, update_fw.py. Located in the \usr\bin folder.

Code:
#!/usr/bin/env python
import subprocess
import os
import sys
from subprocess import Popen, PIPE
import fcntl
import time
import glob
tmpfile = '/home/baikal/tmp.bin'
path = '/media/boot/G*.bin'
fwfile = glob.glob(path)
if not fwfile:
print 'No firmware'
sys.exit()

USBDEVFS_RESET= 21780

# enter dfu mode
def enter_dfumode():
  subprocess.call('echo 0 > /sys/class/gpio_sw/PA18/data', shell=True)
  subprocess.call('echo 0 > /sys/class/gpio_sw/PA10/data', shell=True)
  subprocess.call('echo 1 > /sys/class/gpio_sw/PA10/data', shell=True)

def exit_dfumode():
  subprocess.call('echo 1 > /sys/class/gpio_sw/PA18/data', shell=True)
  subprocess.call('echo 0 > /sys/class/gpio_sw/PA10/data', shell=True)
  subprocess.call('echo 1 > /sys/class/gpio_sw/PA10/data', shell=True)

def reset_usb(driver):
  try:
    lsusb_out = Popen("lsusb | grep -i %s"%driver, shell=True, bufsize=64, stdin=PIPE, stdout=PIPE, close_fds=True).stdout.read().strip().split()
    bus = lsusb_out[1]
    device = lsusb_out[3][:-1]
    f = open("/dev/bus/usb/%s/%s"%(bus, device), 'w', os.O_WRONLY)
    fcntl.ioctl(f, USBDEVFS_RESET, 0)
  except Exception, msg:
    print ""

def update_firmware():
  enter_dfumode()
  reset_usb("DFU")
  print 'Downloading... ' + fwfile[0]
  cmd = 'sudo dfu-util -a 0 -d 0483:df11 -s 0x08000000:leave -D ' + fwfile[0]
  subprocess.call(cmd, shell=True)
  cmd = 'sudo rm -rf ' + path
  subprocess.call(cmd, shell=True)

enter_dfumode()
reset_usb("STM32F407")
reset_usb("DFU")
update_firmware()
exit_dfumode()

print "Done"

I am not an expert like you, but looks we are talking about the same thing.
The control board with the ST chip must be re-programmed.

I have 2 x OrangePI and 1 x Control board for spare.

Post
Topic
Board Mining (Altcoins)
Re: Baikal Giant X10
by
ismurdegus
on 09/02/2018, 11:22:20 UTC
If the device's asics are fpga's and programmed differently at B it will just never work...

On the control board there is a micro usb connector. I am sure is used to flash the controller onboard.

If we had the possibility to extract the firmware from a Giant B and flash it on an X10 board, I am sure will work
Post
Topic
Board Mining (Altcoins)
Re: Baikal Giant X10
by
ismurdegus
on 09/02/2018, 10:59:29 UTC
Post
Topic
Board Mining (Altcoins)
Re: Baikal Giant X10
by
ismurdegus
on 09/02/2018, 10:51:10 UTC
Hi guys

Not sure where to post this maybe useful information.....

I did some test with my X10 and I find that the Giant-B and X10 are the same machine.

The only difference is of course the OS inside the SD card and the firmware inside the controller board (blue card with ST microcontroller)

So, what I did is install the Giant-B image on my X10 .... :-0

The miner start like normal. The interface show all correct and also the hash cards show the right frequency and right hash power.

At this point I try to connect my unit at a lby pool..... The pool accept the connection but the miner reject the data to decrypt.

Ask me some question if you want...


Ciao

I don't think you've uncovered anything that anyone doesn't know.  While the controller board is the same (Orange Pi I believe?), from your report it also appears that the hash-boards themselves are different because the hash boards in your x10 do not have the capability to do lby... hence your rejections.


There are 3 parts inside the Bikal miner

1) OrangePi
2) Control Board
3) Hashing boards

When I try to mine lbry, the miner was up and running. Temperature of chips went UP and was generating 40GH/s
The rejection was from the pool not from the miner.

I think I did a screenshot, let me find it
Post
Topic
Board Mining (Altcoins)
Re: Baikal Giant X10
by
ismurdegus
on 09/02/2018, 10:36:29 UTC
Hi guys

Not sure where to post this maybe useful information.....

I did some test with my X10 and I find that the Giant-B and X10 are the same machine.

The only difference is of course the OS inside the SD card and the firmware inside the controller board (blue card with ST microcontroller)

So, what I did is install the Giant-B image on my X10 .... :-0

The miner start like normal. The interface show all correct and also the hash cards show the right frequency and right hash power.

At this point I try to connect my unit at a lby pool..... The pool accept the connection but the miner reject the data to decrypt.

Ask me some question if you want...


Ciao
Post
Topic
Board Mining (Altcoins)
Re: BAIKAL GIANT-B SD image need
by
ismurdegus
on 09/02/2018, 10:27:14 UTC
Post
Topic
Board Mining (Altcoins)
BAIKAL GIANT-B SD image need
by
ismurdegus
on 05/02/2018, 05:15:00 UTC
Hi Guys
Anyone have a Baikal Giant-B?

Will be possible  have copy of the image file from the micro SD?

Thanks
Post
Topic
Board Mining (Altcoins)
Re: Baikal Giant X10
by
ismurdegus
on 27/01/2018, 21:09:33 UTC
Hi Guys

I have some issue with my X10

After 25-30 min of mining the web interface is not updating data.
On the top left corner show "Scripta Down". If I leave the page and try to login again is not working.

SSH is not working, just PING is fine.

I need  remove power wait 30s and power UP again.

I replace the SD card with a Sandisk new one and download the new image from the Baikal website page.

After did all this the problem still happen.

Temp are around 35 for the boards and 37-39 for the OrangePI.

Any suggestion?

Thanks


1. Reboot often resolve this issue.
2. Try changing pool some pool diff port are not compatible and cause issue
3. Orange pi could be faulty ?
4. Try using another LAN switch


1. Reboot solve this issue but this machine should be on 24/7 without any problem. Especially for the low power and heat

2. I am using the Suprnova XVG.

3. I have order one new OrangePI from a local supply. Will try next week.

4. Lan is fine. When the miner going offline from the local LAN, I can see that the LAN/LED is still blinking. Also looks like is still mining. Not sure 100%
Post
Topic
Board Mining (Altcoins)
Re: Baikal Giant X10
by
ismurdegus
on 27/01/2018, 20:52:52 UTC
Hi Guys

I have some issue with my X10

After 25-30 min of mining the web interface is not updating data.
On the top left corner show "Scripta Down". If I leave the page and try to login again is not working.

SSH is not working, just PING is fine.

I need  remove power wait 30s and power UP again.

I replace the SD card with a Sandisk new one and download the new image from the Baikal website page.

After did all this the problem still happen.

Temp are around 35 for the boards and 37-39 for the OrangePI.

Any suggestion?

Thanks
Post
Topic
Board Mining (Italiano)
Re: Problemino con Baikal X10
by
ismurdegus
on 27/01/2018, 19:49:34 UTC
Ciao, spegni ( stacca la spina) e poi riaccendi... A me qualche volta con l'x10 capita... Ho sempre risolto così.

Ciao

Si ma non posso fare sempre questo.
Si sa quale e' il problema?

Le temperature sembrano OK, pensi sia un bug del software?

Grazie
Post
Topic
Board Mining (Italiano)
Problemino con Baikal X10
by
ismurdegus
on 27/01/2018, 09:57:28 UTC
Ciao a tutti

Venerdi' mi e' arriato il Baikal X10.
Dopo aver impostato le varie pool, ho visto che effettivamente minava ed andava tutto liscio.

Mi sono accorto pero' che dopo circa 25-30min l'interfaccia web non risponde piu' ed in alto a sinistra compare il messaggio "Scripta Down".

Cosa strana e' che le luci verdi continuano a lampeggiare, quindi penso che la macchina sta minando ancora......

Provato anche in SSH ma non funziona.

Il ping funziona invece.


Che devo fare?