BitcoinPrivate-legacy/fork-instructions.md

32 lines
646 B
Markdown
Raw Normal View History

2018-03-02 16:02:43 -08:00
#
# Instructions to set up a BitcoinPrivate full-node
2018-03-02 16:48:52 -08:00
Linux ONLY, 500GB+ recommended
2018-03-02 16:02:43 -08:00
#
# Bitcoin Private
2018-03-02 16:48:52 -08:00
March 2, 2018
2018-03-02 16:02:43 -08:00
#
2018-03-02 16:48:52 -08:00
# Install Bitcoin Private
2018-03-02 16:02:43 -08:00
2018-03-02 16:48:52 -08:00
Follow the instructions [here](https://github.com/BTCPrivate/BitcoinPrivate/blob/master/README.md).
2018-03-02 16:02:43 -08:00
# Download + Decompress Snapshot Data (BTC UTXOs)
2018-03-02 16:36:58 -08:00
```
2018-03-02 16:40:04 -08:00
cd ~/.btcprivate/
2018-03-02 16:02:43 -08:00
curl https://s3.amazonaws.com/btcp.snapshot/utxo_snapshot.tar.gz | tar xvz
2018-03-02 16:36:58 -08:00
```
2018-03-02 16:48:52 -08:00
2018-03-02 16:56:11 -08:00
You can also generate the utxo_snapshot yourself [here](https://github.com/BTCPrivate/utxo_dump).
2018-03-02 16:42:39 -08:00
# Make the config file
```
mkdir ~/.btcprivate
touch ~/.btcprivate/btcprivate.conf
```
2018-03-02 16:02:43 -08:00
# Run the daemon
2018-03-02 16:36:58 -08:00
```
2018-03-02 16:02:43 -08:00
cd ~/BitcoinPrivate
./src/btcpd
2018-03-02 16:36:58 -08:00
```