MFC mining via Linux

MFC mining via Linux

asmcoder

sudo apt-get install git

sudo apt-get install libboost-*

sudo apt-get install libssl-dev

sudo apt-get install libdb++-dev

sudo apt-get install libminiupnpc-dev

sudo apt-get install libqt4-dev

sudo apt-get install qt4-qmake

mkdir ~/src

chdir ~/src

git clone https://github.com/MFrcoin/MFCoin.git

cd ~/src/MFCoin/src/

rm -rf leveldb

mv leveldb-lin/ leveldb

cd leveldb/

make memenv_test

cd ~/src/MFCoin

qmake

make


./MFCoin-qt


MFCoin v1.0.0.1 provides for a «getwork» method through RPC which all the mining programs can read, therefore, if you have several megahashes, you can mine solo. Just create a setup file in: ~/.MFCoin/MFCoin.conf with the following content:

rpcuser=username

rpcpassword=SuperPassword

rpcport=3331

rpcallowip=127.0.0.1 (or * no limits!)

server=1


*Mind, that in case you open RPC port online, there is a risk of unauthorised access to your wallet! Try to think of a really complicated password.

Start the miner with the following parameters: -o localhost:3331 —no-stratum -a scrypt -u username -p SuperPassword

If it pushes through (YAY!!!), you managed to mine a block!


Setup of cpu miner


sudo apt-get install curl

sudo apt-get install libcurl4-openssl-dev

sudo apt-get install autoconf

git clone https://github.com/pooler/cpuminer.git

cd src/cpuminer

./autogen.sh

./configure

make


./minerd


CudaMiner can be used as well, with only one problem.

NVIDIA has some issues with CUDA TOOLS 8 and CudaMiner on my GTX760 only gives 160 Kh/s via Scrypt, while with CUDA 5-5 the capacity equals 250 Kh/s.

Report Page