This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |