Skip to content

Instantly share code, notes, and snippets.

@illuzen
Last active December 13, 2018 02:58
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save illuzen/922e31196c98675b54b5 to your computer and use it in GitHub Desktop.
Save illuzen/922e31196c98675b54b5 to your computer and use it in GitHub Desktop.
bitcoin-unlimited-installer.sh
apt-get -y update
apt-get -y install build-essential libtool autotools-dev autoconf pkg-config libssl-dev libboost-all-dev
git clone https://github.com/gandrewstone/BitcoinUnlimited.git
cd ./BitcoinUnlimited
./autogen.sh
./configure --disable-wallet
make
make install
printf "rpcuser=bitcoirpc\nrpcpassword=$RANDOM$RANDOM$RANDOM\n" >> ~/.bitcoin/bitcoin.conf
bitcoind &
@kFTY
Copy link

kFTY commented Apr 22, 2017

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