Post
Topic
Board Mining (Altcoins)
Re: Raspberry Pi - BFG Miner help - Noob
by
desci
on 24/10/2016, 08:25:44 UTC
You should run that in the bfgminer folder

Which in your case happen to be ~/bfgminer, so you should use this:

Code:
./bfgminer/bfgminer

Instead of this:

Code:
./bfgminer



The "proper" way to do it would be to:

Code:
pi@raspebrrypi:~ $ cd bfgminer
pi@raspebrrypi:~/bfgminer $ ./bfgminer --scrypt -o stratum+tcp://stratum.eu.nlg.hardcoreminers.com:3026 -u Weblogin.WorkerName -p WorkerPassword

You have to change Weblogin.WorkerName to your login data found on the My Account / My Workers area. For example:

Code:
-u desci.1 -p x

So the full command for me would be:

Code:
pi@raspebrrypi:~ $ ./bfgminer/bfgminer --scrypt -o stratum+tcp://stratum.eu.nlg.hardcoreminers.com:3026 -u desci.1 -p x



If bfgminer is actually installed in the system, however, you should run it without the leading dot and slash, like so:

Code:
pi@raspebrrypi:~ $ bfgminer --scrypt -o stratum+tcp://stratum.eu.nlg.hardcoreminers.com:3026 -u desci.1 -p x