Skip to content

Instantly share code, notes, and snippets.

@marcinwol
Last active June 10, 2018 17:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save marcinwol/ec1143bf572bfa95a9b5 to your computer and use it in GitHub Desktop.
Save marcinwol/ec1143bf572bfa95a9b5 to your computer and use it in GitHub Desktop.
Compile latest bitmonero source 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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment