Search content
Sort by

Showing 10 of 10 results by xxALEXANDRxx
Post
Topic
Board Mining (Altcoins)
Re: sgminer: Baikal Giant X10 / N / B - Open Source - Confirmed OC Giant B!
by
xxALEXANDRxx
on 26/06/2018, 18:09:17 UTC
What message do you get when you try to copy?

I get file text busy but when I keep trying or clear cache it work,I get none msg in fact.  

one of my board keep getting more and more HW error I have to undo that

How do you get text busy if there is no message? Just hang?

Probably easier to reflash.
just hang. 

Yeah I just dont have any device to read sdcard now ,I'll do it tomorrow,thanks for your time cod3gen,appreciate !

Original image Baikal B:
https://drive.google.com/open?id=1R8Okh-eu7wwl9j3Xj3O89oaL9Jr_s9kI
Post
Topic
Board Mining (Altcoins)
Re: sgminer: Baikal Giant X10 / N / B - Open Source - Confirmed OC Giant B!
by
xxALEXANDRxx
on 20/06/2018, 20:13:58 UTC
I got this bug on another machine while flashing.bus error.

https://image.ibb.co/kLYCXy/bugbaikal.png

so right now 3 machine have problem(one refuse to totally flash/keep crashing while its flashing,one having HW error and one another get compiler/bus error) while 10 other machine goes well.



Just delete downloaded folder, fix memory and recompile sgminer.
Quote
I get some HW error on 1 board,to eraze overclock I have just to change driver-baikal.h file and reflash?

Edit: Its not working,still 480mhz after changing driver-baikal.h file/flashing. How do I do ?

thanks alot

Write original image on sdcard.
Post
Topic
Board Майнеры
Re: Собирать ферму или нет?
by
xxALEXANDRxx
on 18/06/2018, 20:37:47 UTC
Думаю приобрести ферму стоит! но лишь с дорогими картами  и высокой скоростью! не менее 8 Gb из за сложности! скоро вверх пойдут все монеты и не советую тратить собранные монеты! а продать по высокой цене! у меня у самого 1 ферма стоит! и буду приобретать всё больше и больше пока целый завод не создам!
Год назад такая тактика была бы верна. Сейчас думать больше надо, так-как профита меньше уже. Да и рынок интересней. А так успехов с заводом)
Post
Topic
Board Mining (Altcoins)
Re: sgminer: Baikal Giant X10 / N / B - Open Source - Confirmed OC Giant B!
by
xxALEXANDRxx
on 14/06/2018, 19:34:39 UTC
Just config 2 miner (or and reconf) to mine 1 coin on same pool to different wallets. After 24 hours compare the income indicators.
Post
Topic
Board Mining (Altcoins)
Re: sgminer: Baikal Giant X10 / N / B - Open Source - Confirmed OC Giant B!
by
xxALEXANDRxx
on 14/06/2018, 18:07:30 UTC
Can you show the start page of your baikal?
Post
Topic
Board Mining (Altcoins)
Re: sgminer: Baikal Giant X10 / N / B - Open Source - Confirmed OC Giant B!
by
xxALEXANDRxx
on 13/06/2018, 19:55:07 UTC
''cd sgminer-baikal''

Where do I find this folder ? Can't found the path

thanks alot

This folder will be created after git clone. All you need just follow {How to install and compile?}
Post
Topic
Board Mining (Altcoins)
Re: sgminer: Baikal Giant X10 / N / B - Open Source - Confirmed OC Giant B!
by
xxALEXANDRxx
on 13/06/2018, 19:30:36 UTC
Do we think Giant N will eventually get new CN algos?


No. If they did - Baikal would never have their 5 for 1 offer.

did your github oc image still work for BKB ?

I try installing BFGminer as someone pointed out it might work so I take the easiest way but all update or installing become a fail process ''Killedg package lists... 99%/20%''

So I wonder if baikal setup some auto delete stuff or thing like that,im worried even your image might not work for me. just want to know before start trying if its something 'serious' or not( I see possible hardware issue on some forum)
thanks

There is no auto-deletion. About the error look at README.md for compilation errors. BFGminer need correct driver for your baikal device, otherwise it will not work.
Post
Topic
Board Mining (Altcoins)
Re: sgminer: Baikal Giant X10 / N / B - Open Source - Confirmed OC Giant B!
by
xxALEXANDRxx
on 11/04/2018, 10:36:20 UTC
Incorrect link to STM Chip firmware is now updated. Also included is multiple firmwares i have received from others.
Hello! Tell me please, in this way, I get the firmware of my STM chip ?   https://bitcointalk.org/index.php?topic=2790982.msg29642597#msg29642597  

I just created a python script to do it.  Just duplicate one of the python files in /usr/bin/ and paste this code into it.  Then, if successful, then result will reside as /home/baikal/GX10 (Extracted).bin
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/GX10 (Extracted).bin'
USBDEVFS_RESET= 21780

# enter dfu mode
def enter_dfumode():
  subprocess.call('sudo /opt/scripta/startup/miner-stop.sh', shell=True)
  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 extract_firmware():
  print "Extracting firmware..."
  cmd = 'sudo dfu-util -a 0 -d 0483:df11 -s 0x08000000:leave -U ' + tmpfile
  subprocess.call(cmd, shell=True)
  #n = os.path.getsize(fwfile[0])
  #cmd = 'cmp '+ fwfile[0] + ' ' + tmpfile + ' -n ' + str(n)
  #ret = subprocess.call(cmd, shell=True)
  #subprocess.call('sudo rm -rf /home/baikal/tmp.bin', shell=True)
  #return ret
 
enter_dfumode()
reset_usb("STM32F407")
reset_usb("DFU")

extract_firmware()
exit_dfumode()

print "Done"

this one
Post
Topic
Board Mining (Altcoins)
Re: Baikal X10 ⚡OVERCLOCK⚡ Claim reward 0.2 BTC for TUTORIAL HOW TO :)⚡⚡⚡⚡
by
xxALEXANDRxx
on 11/04/2018, 07:18:54 UTC
Just x10 user`s
Post
Topic
Board Mining (Altcoins)
Re: Baikal X10 ⚡OVERCLOCK⚡ Claim reward 0.2 BTC for TUTORIAL HOW TO :)⚡⚡⚡⚡
by
xxALEXANDRxx
on 10/04/2018, 22:10:23 UTC
Can somewone check this driver on x10? Working set_option or not.
https://drive.google.com/open?id=1W3UJmcm2oDje656Kd2KYFPIZvFj0U4wp