Last active
June 10, 2018 17:10
-
-
Save marcinwol/ec1143bf572bfa95a9b5 to your computer and use it in GitHub Desktop.
Compile latest bitmonero source on Ubuntu 14.04
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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment