Skip to content

Instantly share code, notes, and snippets.

@dizda
Last active July 18, 2022 06:41
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save dizda/8c1e9e8a8da8e35d1730 to your computer and use it in GitHub Desktop.
Save dizda/8c1e9e8a8da8e35d1730 to your computer and use it in GitHub Desktop.
Install bitcoind on debian wheezy
wget https://github.com/bitcoin/bitcoin/archive/v0.9.3.tar.gz
tar xvzf v0.9.3.tar.gz
mv bitcoin-0.9.3/ daemon/
apt-get install build-essential libtool autotools-dev autoconf libssl-dev libboost-all-dev pkg-config
# Get configure
./autogen.sh
# Enable hardening is more secure
# Disable wallet, is the "watch-only" P2P mode
./configure --enable-hardening --disable-wallet
#compile
make
# install binaries into /usr/local/bin/ directory
make install
# Launch in background
bitcoind -datadir=/home/bitcoin/blockchain-backup/ -daemon
# Get progress
bitcoind -datadir=/home/bitcoin/blockchain-backup/ getinfo
@nofilenamed
Copy link

mv bitcoin-0.9.3/ daemon/
cd daemon

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