I'm trying to do some microCoin development.
How do you run a microCoin daemon?
reading through:
https://github.com/microcoinsource/microcoin/blob/master/doc/build-unix.txtkind of stuck at compiling the source on Ubuntu13.10
% make -f makefile.unix
g++ -c -O2 -msse2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -g -DBOOST_SPIRIT_THREADSAFE -I/root/microcoin/src -I/root/microcoin/src/obj -DUSE_UPNP=0 -DUSE_IPV6=1 -DSCRYPT_KECCAK512 -DSCRYPT_CHACHA -DSCRYPT_CHOOSE_COMPILETIME -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2 -MMD -MF obj/alert.d -o obj/alert.o alert.cpp
alert.cpp:5:29: fatal error: boost/foreach.hpp: No such file or directory
#include
^
compilation terminated.
make: *** [obj/alert.o] Error 1
any help appreciated.
Try to install you boost again.
As you see error is: boost/foreach.hpp: No such file or directory
Here is how I install it: Ubuntu 12.04.3 x64
Type these to update the system, and install required tools.
sudo apt-get update
sudo apt-get upgrade
sudo apt-get install libqtgui4 qt4-qmake libqt4-dev build-essential libboost-dev libboost-system-dev libboost-filesystem-dev libboost-program-options-dev libboost-thread-dev libssl-dev libdb++-dev git
sudo apt-get install libboost-all-dev
sudo apt-get install libboost1.48-all-dev
Next, get the microcoin source code from git.
git clone https://github.com/microcoinsource/microcoin.git
Navigate to the src directory and begin the compilation.
cd microcoin/src/
make -f makefile.unix USE_UPNP=-
Copy microcoind somewhere to make it executable for every user on the system.
cp microCoind /usr/bin/microCoind
Try to start microcoind:
./microCoind
You can see the path where you need to put conf file:
Usually it is: /root/.microCoin/
Make your conf file in there:
nano /root/.microCoin/microCoin.conf
Put in your conf file:
server=1
daemon=1
rpcuser=user
rpcpassword=x
rpcport=3333
rpcallowip=*
Start microcoind:
./microCoind
You're done.