How Can We Help?
How to update bbpminer_linux
Below are instructions on how to place the bbpminer_linux in the same directory as your biblepay data folder.
cd ~
cd .biblepayevolution
pkill bbpminer_linux
rm bbpminer_linux
wget https://github.com/biblepay/cpuminer/raw/master/binaries/bbpminer_linux
chmod 755 bbpminer_linux
The instructions goes into your .biblepayevolution
directory
pkill will end any process named bbpminer_linux
rm will remove any file named bbpminer_linux
in that directory
wget
is a standard download CLI utility that will retrieve the compiled binary from biblepay
github repository (you can of course compile your own if you wish)
with chmod
, we change the permission on binary so it is executable