-
-
Save BlinkyStitt/2503687 to your computer and use it in GitHub Desktop.
compiling bitcoind on ubuntu-server 12.04
This file contains hidden or 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
sudo apt-get update | |
sudo apt-get install -y git-core build-essential libssl-dev libboost-all-dev libdb5.1-dev libdb5.1++-dev libgtk2.0-dev | |
git clone https://github.com/bitcoin/bitcoin.git | |
cd bitcoin/src | |
make -f makefile.unix clean; make -f makefile.unix USE_UPNP= bitcoind | |
# from #bitcoin-dev: | |
# sacarlson: USE_UPNP= : don't build upnp, USE_UPNP=0 : build but disable by default, USE_UPNP=1 : build but enable by default | |
# optionally, | |
strip bitcoind |
Nothing is said here about a correct version of Berkley DB, which has to be db4 or something.
Otherwise, the built-in wallet becomes incompatible.
:-(
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
To find out how to setup your own bitcoind daemon server running locally on virtualbox & ubuntu, you can check out my guide here: Guide to compile & install Bitcoind on Ubuntu 12.04 using VirtualBox