Last active
January 23, 2018 21:25
-
-
Save seangeleno/6eb7c1f9e6ac752f84f0571bf654b320 to your computer and use it in GitHub Desktop.
moonero
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| MONERO_FOLDER=$HOME/.bitmonero | |
| MONERO_BOOTSTRAP=$MONERO_FOLDER/upload | |
| mkdir -p $MONERO_BOOTSTRAP && cd $MONERO_BOOTSTRAP | |
| # First download the blockchain bootstrap | |
| wget https://downloads.getmonero.org/blockchain.raw | |
| cd .. | |
| sleep 1 | |
| # Then, get current monero version | |
| wget https://downloads.getmonero.org/cli/linux64 | |
| tar xvjf linux64 | |
| cd monero-v0.11.1.0 | |
| ./monero-blockchain-import --verify 0 --input-file $MONERO_BOOTSRAP/blockchain.raw | |
| ./monerod --detach |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment