-
Download Fantomcoin and BCN/MRO/QCN binaries.
-
Launch BCN/MRO/QCN daemon and wait till its synchronization.
-
Start FantomCoin's daemon. The process is very similar to BCN/MRO/QCN's: launch command line, navigate to the right folder and launch fantomoind.exe . Use "save" command after synchronization.
-
Create FCN's address. Again it is the same process as for BCN/MRO/QCN: open another instance of command line, navigate to Fantomcoin's folder and generate new wallet with "simplewallet".
simplewallet --generate-new-wallet=example_wallet.bin --pass=12345
Here "example_wallet.bin" is the name of the wallet (use .bin file extension) and "12345" is the password for your new wallet.
-
One more command line is needed. Navigate to Fantomcoin's folder and launch minerc.exe using the next command:
minerc --node1=127.0.0.1:8081 --node2=127.0.0.1:24081 --wallet1=%your BCN/MRO/QCN address% --wallet2=%your FCN address%
--node1=127.0.0.1:8081 is IP and BCN's daemon port.
Use this IP and port for MRO:
--node1=127.0.0.1:18081 instead
And for QCN use this:
--node1=127.0.0.1:23081
--node2=127.0.0.1:24081 is IP and FCN's daemon port
-
Enjoy merged mining!
-
Open up a Terminal and download a few Linux packages using next commands:
sudo apt-get install gcc
sudo apt-get install cmake
sudo apt-get install libboost1.55-all-dev
sudo apt-get install git
-
Using git and terminal clone BCN/MRO/QCN and Fantomcoin repositories:
git clone https://github.com/amphibia/fantomcoin.git
git clone https://github.com/amjuarez/bytecoin.git
git clone https://github.com/quazarcoin/quazarcoin
git clone https://github.com/monero-project/bitmonero
-
Navigate through the Terminal to each cloned folder and start making process - assuming you've cloned to the /home/ folder - commands will be:
cd home/bytecoin
make -j
or
cd home/quazarcoin
make -j
or
cd home/monero
make -j
cd home/fantomcoin
make -j
-
Launch BCN/MRO/QCN daemon and wait till its synchronization.
-
Start FantomCoin's daemon. The process is very similar to BCN/MRO/QCN's: launch command line, navigate to the right folder and launch fantomoind.exe . Use "save" command after synchronization Wink
-
Create FCN's address. Again it is the same process as for BCN/MRO/QCN: open another instance of command line, navigate to Fantomcoin's folder and generate new wallet with "simplewallet".
simplewallet --generate-new-wallet=example_wallet.bin --pass=12345
Here "example_wallet.bin" is the name of the wallet (use .bin file extension) and "12345" is the password for your new wallet.
-
One more command line is needed. Navigate to Fantomcoin's folder and launch minerc.exe using the next command:
minerc --node1=127.0.0.1:8081 --node2=127.0.0.1:24081 --wallet1=%your BCN/MRO/QCN address% --wallet2=%your FCN address%
--node1=127.0.0.1:8081 is IP and BCN's daemon port.
Use this IP and port for MRO:
--node1=127.0.0.1:18081 instead
And for QCN use this:
--node1=127.0.0.1:23081
--node2=127.0.0.1:24081 is IP and FCN's daemon port
-
Enjoy merged mining!