Last active
August 16, 2019 17:15
-
-
Save arvinxx/b3d24391e45b88f5fd867753844892d8 to your computer and use it in GitHub Desktop.
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
#!/usr/bin/env bash | |
sudo apt-get update | |
sudo apt-get install -y software-properties-common | |
sudo add-apt-repository -y ppa:openjdk-r/ppa | |
sudo apt-get update | |
sudo apt-get install -y openjdk-11-jdk | |
wget https://github.com/rchain/rchain/releases/download/v0.9.12/rnode-0.9.12.git16d90f43.tgz | |
tar zxvf rnode-0.9.12.git16d90f43.tgz | |
ln -s $(pwd)/rnode-0.9.12.git16d90f43/bin/rnode /usr/local/bin/rnode | |
wget https://files.rchain-dev.tk/testnet2-wallets.txt | |
mkdir -p ~/.rnode/genesis | |
mv testnet2-wallets.txt ~/.rnode/genesis/wallets.txt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment