And what about forknote?
https://github.com/forknote/forknote/releases/tag/2.1.1with it it is more convenient.
daemon error, all installed.
./micronotecoind
./micronotecoind: error while loading shared libraries: libboost_filesystem.so.1.58.0: cannot open shared object file: No such file or directory
You need to install libboost 1.58.0. This is the actual version of libboost on Ubuntu 16.04 respositories.
If you are using Ubuntu 16.04, do:
sudo apt-get install libboost-all-dev
If you are using another Linux distro, you can compile the sources. For Debian/Ubuntu based distros:
sudo apt-get update
sudo apt-get install git build-essential cmake libboost-all-dev
git clone https://github.com/micronotecoin/micronotecoin
cd micronotecoin
make
cd build/release/src
./micronotecoind
Best regards,