From 812e8eea6e4d49f88188b62b3662516781a391e2 Mon Sep 17 00:00:00 2001 From: CryptoJake22 <34906725+BlueSilver22@users.noreply.github.com> Date: Fri, 2 Mar 2018 19:36:58 -0500 Subject: [PATCH] Update fork-instructions.md --- fork-instructions.md | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) diff --git a/fork-instructions.md b/fork-instructions.md index 9efefbe9..2ea932fc 100644 --- a/fork-instructions.md +++ b/fork-instructions.md @@ -15,28 +15,38 @@ sudo apt-get -y install \ zlib1g-dev wget bsdmainutils make automake # OPTIONAL: Make sure you have a big enough Swapfile -```cd / +``` +cd / sudo dd if=/dev/zero of=swapfile bs=1M count=3000 sudo mkswap swapfile sudo chmod 0600 /swapfile sudo swapon swapfile -echo "/swapfile none swap sw 0 0" | sudo tee -a etc/fstab > /dev/null``` +echo "/swapfile none swap sw 0 0" | sudo tee -a etc/fstab > /dev/null +``` -cd ~ +`cd ~` # Clone the BitcoinPrivate repo +``` git clone https://github.com/BTCPrivate/BitcoinPrivate cd BitcoinPrivate - +``` +``` # Build Wallet / Daemon ./btcputil/fetch-params.sh ./btcputil/build.sh -j$(nproc) - +``` +``` cd ~/.btcprivate/ +``` # Download + Decompress Snapshot Data (BTC UTXOs) +``` curl https://s3.amazonaws.com/btcp.snapshot/utxo_snapshot.tar.gz | tar xvz +``` # Run the daemon +``` cd ~/BitcoinPrivate ./src/btcpd +```