Raspberry Pi + Asic Miner Install





















댓글

  1. 동영상 출처:
    http://www.youtube.com/watch?v=hOLDrSiI_ic

    답글삭제
  2. How to Set up BFGMiner on the Raspbian on the Raspberry Pi.
    Use your USB ASICs with the Low power Raspberry Pi, to get maximum efficiency for power to BTC.

    The Rasbian OS does not contain a lot of support for this sort of thing so you need to follow this guide:

    Step 0 :
    To set-up find out the IP address then SSH into it using PuTTY:
    http://www.chiark.greenend.org.uk/~sg...

    Step 1: Update to latest Version
    sudo aptitude update
    sudo aptitude upgrade

    Step 2: Install Librarys
    sudo apt-get install libusb-1.0-0-dev libcurl4-gnutls-dev libjansson-dev uthash-dev libncurses5-dev libudev-dev autoconf automake libtool pkg-config screen

    Step 3: Get BFGMiner
    git clone git://github.com/luke-jr/bfgminer
    (use: ls to find where it is)
    cd bfgminer

    Step 4 Configure the Software for Compiling
    ./autogen.sh
    ./configure
    make
    (optional: then use sudo make install to have it system wide. Not advised)

    Step 5:Run BFGMiner
    (stay in the bfgminer software then use below command changing caps to your settings.)

    screen -S Mining ./bfgminer -o stratum+tcp://POOL.com:PORT -u USER -p PASSWORD

    Step 6: Using Screen
    then to do something else hit
    Ctrl A D

    and to get back to it use
    screen -ls to see your running screens
    then screen -r 0000 to get back to your screen

    However If you are using Nanofury/Ice Fury you need HIDAPI which is VERY hit and miss and more likely miss than hit at the moment.
    git clone git://github.com/signal11/hidapi
    cd hidapi
    ./bootstrap
    ./configure
    make
    sudo make install
    sudo ldconfig
    However this still might not work so check out video tomorrow on Minepeon:

    My pool: http://full.sc/1tmZveB
    Donations/tips:
    BTC: 14uUbzJSi2t5MGgYH72PdTonD22V8drBVN
    Doge: DTHbar4BRRmxx2YBjkYj23epzJG7Z2g5cx
    Google+ : https://plus.google.com/+Tingawinga5
    Facebook: http://www.facebook.com/tingawinga5
    Folding@home team: 123464
    Twitter: http://www.twitter.com/tingawinga
    SubReddit: http://www.reddit.com/r/TingaWinga/
    Website: http://www.tingawinga.co.uk

    답글삭제

댓글 쓰기

이 블로그의 인기 게시물

파이썬으로 Homomorphic Filtering 하기

파이썬으로 2D FFT/iFFT 하기: numpy 버전