A lot of people are asking me about this so - for Ubuntu 12 +
Go to
http://novacoin.org/install/ and follow the instructions substitute libdb4.8++-dev for libdb5.3++-dev for Ubuntu 12.10 +
Next sudo apt-get install bitcoind to load the rest of the libs you need.
Then git clone the client. In this instance git clone
https://github.com/pocopoco/yacoin.gitEdit net.cpp in yacoin/src on line 28 and change
static const int MAX_OUTBOUND_CONNECTIONS = 8;
to
static const int MAX_OUTBOUND_CONNECTIONS = 1000; <--- or whatever you want 200 is probably a bit more conservative
Once compiled run the client and set the yacoin.conf
to do that run editor /home/"YOURUSERNAME"/.yacoin/yacoin.conf and copy the rpcuser and pass that is generated on the screen
Then run the client in daemon mode. ./yacoind -daemon -gen -addnode=82.211.30.212
Then you can run the commands from here
https://en.bitcoin.it/wiki/Original_Bitcoin_client/API_calls_listto check the state. The only one you really need is ./yacoind getstatus
P.S. since 82.211.30.212 is in the EU, it would help to run a VPN etc that is in or near Germany...
If you found this useful
YJoLsK17Z78C5dndqhh5os1mKnXcnUR2qM
I am not sure if it was just me or my computer running Ubuntu 12.10, but this is the route I took thanks to all of the support I received here.
Below is the instructions step by step that I used.
# sudo apt-get install qt4-qmake libqt4-dev build-essential libboost-dev libboost-system-dev
libboost-filesystem-dev libboost-program-options-dev libboost-thread-dev libssl-dev libdb5.3++-
dev
# sudo apt-get install git
# sudo apt-get install bitcoind
# sudo git clone
https://github.com/pocopoco/yacoin# cd yacoin/src
# Edit net.cpp in yacoin/src on line 28 and change
static const int MAX_OUTBOUND_CONNECTIONS = 8;
to
static const int MAX_OUTBOUND_CONNECTIONS = 1000; <--- or whatever you want 200 is probably a
bit more conservative
# sudo apt-get install libminiupnpc-dev
# make -f makefile.unix
# Then run the client in daemon mode. ./yacoind -daemon -gen -addnode=82.211.30.212
# Once compiled run the client and set the yacoin.conf
# to do that run editor /home/"YOURUSERNAME"/.yacoin/yacoin.conf and copy the rpcuser and pass
that is generated on the screen
# Then run the client in daemon mode. ./yacoind -daemon -gen -addnode=82.211.30.212
Then you can run the commands from here
https://en.bitcoin.it/wiki/Original_Bitcoin_client/API_calls_listto check the state. The only one you really need is ./yacoind getstatus
P.S. since 82.211.30.212 is in the EU, it would help to run a VPN etc that is in or near Germany...
If you found this useful
YJoLsK17Z78C5dndqhh5os1mKnXcnUR2qM
I'm glad it worked for you. Welcome the Linux.