Sunday, August 23, 2015

Compile latest bitmonero source on Ubuntu 14.04

The gist shows how to compile latest monero source code on Ubuntu 14.04.
# The gist shows how to compile latest monero source code on
# Ubuntu 14.04
# install git
sudo apt-get install git
# install dependencies
sudo apt-get install build-essential cmake libboost1.55-all-dev libssl-dev libgtextutils-dev pkg-config libunbound-dev libevent-dev libgtest-dev graphviz doxygen libdb5.3++-dev
# get the source code of bitmonero from github
git clone https://github.com/monero-project/bitmonero.git
# compile
cd bitmonero/
cmake .
make
# copy the binaryis into /opt/bitmonero
sudo mkdir /opt/bitmonero
sudo mv ./bin/* /opt/bitmonero/
# launch the monero node demon and let it synchronize with the monero network
#/opt/bitmonero/bitmonerod
# launch the monero wallet
#/opt/bitmonero/simplewallet