summaryrefslogtreecommitdiff
path: root/script/prepare.sh
diff options
context:
space:
mode:
Diffstat (limited to 'script/prepare.sh')
-rwxr-xr-xscript/prepare.sh18
1 files changed, 9 insertions, 9 deletions
diff --git a/script/prepare.sh b/script/prepare.sh
index 5791065..137dff5 100755
--- a/script/prepare.sh
+++ b/script/prepare.sh
@@ -23,27 +23,27 @@ echo "Found version $PG_VER"
echo "Ⅱ - Install bitcoind version 0.23"
cd $DIR
curl -L https://bitcoincore.org/bin/bitcoin-core-23.0/bitcoin-23.0-x86_64-linux-gnu.tar.gz -o btc.tar.gz
+tar xvzf btc.tar.gz
rm -rfv ~/bitcoin
mkdir -pv ~/bitcoin
-tar xvzf btc.tar.gz
mv -v bitcoin-23.0/* ~/bitcoin
echo "Ⅲ - Install Go Ethereum (Geth) v1.10.24"
cd $DIR
curl -L https://gethstore.blob.core.windows.net/builds/geth-alltools-linux-amd64-1.10.24-972007a5.tar.gz -o geth.tar.gz
+tar xvzf geth.tar.gz
rm -rfv ~/geth
mkdir -pv ~/geth
-tar xvzf geth.tar.gz
mv -v geth-alltools-linux-amd64-1.10.24-972007a5/* ~/geth
-echo "Ⅳ - Install Core Lightning v22.11.1"
+echo "Ⅳ - Install Lightning Network Daemon v0.15.5-beta"
cd $DIR
-curl -L https://github.com/ElementsProject/lightning/releases/download/v22.11.1/clightning-v22.11.1-Ubuntu-22.04.tar.xz -o clightning.tar.gz
-tar xvf clightning.tar.gz
-rm -rfv ~/clightning
-mkdir -pv ~/clightning
-mv -v usr/* ~/clightning
+curl -L https://github.com/lightningnetwork/lnd/releases/download/v0.15.5-beta/lnd-linux-amd64-v0.15.5-beta.tar.gz -o lnd.tar.gz
+tar xvzf lnd.tar.gz
+rm -rfv ~/lnd
+mkdir -pv ~/lnd
+mv -v lnd-linux-amd64-v0.15.5-beta/* ~/lnd
echo "Ⅴ - PATH"
-echo "Add PATH=\"\$HOME/geth:\$HOME/bitcoin/bin:\$HOME/clightning/bin:/usr/lib/postgresql/$PG_VER/bin:\$PATH\" to your bash profile" \ No newline at end of file
+echo "Add PATH=\"\$HOME/geth:\$HOME/bitcoin/bin:\$HOME/lnd:/usr/lib/postgresql/$PG_VER/bin:\$PATH\" to your bash profile" \ No newline at end of file