Linux from Source:
My proposal:
Linux from sources
Install dependencies & compilation dependencies:
sudo apt-get update
sudo apt-get install libboost1.55-all-dev build-essential libdb++-dev g++ libminiupnpc-dev libqt4-dev libprotobuf-dev libgmp-dev
* use your favourite versions of libraries
** use your distribution package tool or compile dependencies from sources
git clone https://github.com/MiniblockchainProject/Cryptonite/
cd Cryptonite
./autogen.sh
./configure --with-incompatible-bdb --with-gui
* proposed options, use ./configure --help to get more options
make -j
* where is the number of threads/cores you wish to use
If everything goes right you will find your qt wallet here:
~/Cryptonite/src/qt/cryptonite-qt
By default cryptonite-qt is compiled as shared library so you may need to launch from the terminal. Optionally install as system package:
sudo make install
* in case of distroes based on apt.
** you need at least 1,2 GB of disk space. 4 GB+ and 4+ cores CPU is recommended for compilation.