Post
Topic
Board Mining (Nederlands)
Re: Nanofury op raspberry pi iemand ervaring?
by
phoenix_nl
on 11/03/2014, 15:35:02 UTC
Ben toevallig gister bezig geweest om nano furies op een raspberry pi te laten draaien.

Hier even een copy/paste (met paar kleine aanpassingen) uit dit topic: https://bitcointalk.org/index.php?topic=326417.0

First you need to install needed library
Code:
1. sudo aptitude update
2. sudo aptitude install libudev-dev libusb-1.0-0-dev libfox-1.6-dev autotools-dev autoconf automake libtool libncurses-dev yasm curl libcurl4-openssl-dev libjansson-dev pkg-config uthash-dev make pkg-config yasm

Second download HIDAPI from git
Code:
1. git clone git://github.com/signal11/hidapi.git hidapi
2. cd hidapi
3. ./bootstrap
4. ./configure --prefix=/usr
5. make
6. sudo make install

Third download bfgminer
Code:
1. git clone git://github.com/luke-jr/bfgminer.git bfgminer
2. cd bfgminer
4. ./autogen.sh
5. ./configure
If you get error: Could not find HASH_ITER –> install uthash-dev 1.9.2+: sudo aptitude install uthash-dev (run ./configure again afterwards)
6. make

Then change usb speed to usb 1 with text editor nano
Code:
1. sudo nano /boot/cmdline.txt
then add dwc_otg.speed=1 at the end of line

To run bfgminer just go to the directory
Code:
1. cd bfgminer
2. sudo ./bfgminer -o *pool* -u *user* -p *password* -S all --set-device NFY:osc6_bits=54

Het is vooral belangrijk om eerst HIDAPI te downloaden en daarna bfgminer. Ook het aanpassen van de usb speed is cruciaal.