Skip to content

Instantly share code, notes, and snippets.

@andrewschaaf
Created May 30, 2011 13:10
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save andrewschaaf/998886 to your computer and use it in GitHub Desktop.
Save andrewschaaf/998886 to your computer and use it in GitHub Desktop.
compiling bitcoind on ubuntu-server 10.4
sudo apt-get update
sudo apt-get install -y git-core build-essential libssl-dev libboost-all-dev libdb4.7-dev libdb4.7++-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
@BlinkyStitt
Copy link

Thanks for this. The only thing I changed was libdb4.7 -> libdb4.8 and libdb4.7++ -> libdb4.8++

@pajarator
Copy link

Big thanks, saved me some time there!!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment