mirror of
https://github.com/mynodebtc/mynode.git
synced 2024-11-12 08:29:16 +00:00
330 lines
8.9 KiB
Bash
Executable File
330 lines
8.9 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
###
|
|
### Setup myNode (all devices)
|
|
### Run with "sudo"
|
|
###
|
|
|
|
set -x
|
|
set -e
|
|
|
|
if [ "$#" != "1" ]; then
|
|
echo "Usage: $0 <ip address>"
|
|
exit 1
|
|
fi
|
|
SERVER_IP=$1
|
|
|
|
# Determine Device
|
|
IS_ROCK64=0
|
|
IS_RASPI3=0
|
|
IS_RASPI4=0
|
|
uname -a | grep aarch64 && IS_ROCK64=1 || IS_RASPI3=1
|
|
# TODO: Determine RASPI4
|
|
|
|
# Make sure FS is expanded for Rock64
|
|
if [ $IS_ROCK64 = 1 ]; then
|
|
/usr/lib/armbian/armbian-resize-filesystem start
|
|
fi
|
|
|
|
# Add sources
|
|
echo "deb http://repo.mongodb.org/apt/debian "$(lsb_release -sc)"/mongodb-org/4.0 main" | tee /etc/apt/sources.list.d/mongodb.list
|
|
|
|
# Update OS
|
|
apt -y update # Needed to accept new repos
|
|
apt-get -y update
|
|
apt-get -y upgrade
|
|
|
|
# Install other tools (run section multiple times to make sure success)
|
|
apt-get -y install htop git curl bash-completion jq dphys-swapfile lsof libzmq3-dev
|
|
apt-get -y install build-essential python-dev python-pip python3-dev python3-pip
|
|
apt-get -y install transmission-cli fail2ban ufw tclsh bluez python-bluez redis-server
|
|
#apt-get -y install mongodb-org
|
|
apt-get -y install clang hitch zlib1g-dev libffi-dev file toilet ncdu
|
|
apt-get -y install toilet-fonts avahi-daemon figlet libsecp256k1-dev
|
|
apt-get -y install inotify-tools libssl-dev tor tmux screen
|
|
apt-get -y install python-grpcio python3-grpcio # Need Debian Buster on Rock64 first...
|
|
|
|
|
|
# Install other things without recommendation
|
|
apt-get -y install --no-install-recommends expect
|
|
|
|
# Add bitcoin users
|
|
useradd -m -s /bin/bash bitcoin || true
|
|
usermod -a -G debian-tor bitcoin
|
|
|
|
|
|
# Install pip packages
|
|
pip install setuptools
|
|
pip install --upgrade setuptools
|
|
pip install wheel
|
|
pip install --upgrade wheel
|
|
pip install speedtest-cli transmissionrpc flask python-bitcoinrpc redis prometheus_client requests
|
|
pip install python-pam python-bitcoinlib psutil
|
|
pip install grpcio grpcio-tools googleapis-common-protos
|
|
|
|
|
|
# Update python3 to 3.7.X
|
|
PYTHON3_VERSION=$(python3 --version)
|
|
if [[ "$PYTHON3_VERSION" != *"Python 3.7"* ]]; then
|
|
mkdir -p /tmp/download
|
|
cd /tmp/download
|
|
wget https://www.python.org/ftp/python/3.7.2/Python-3.7.2.tar.xz
|
|
tar xf Python-3.7.2.tar.xz
|
|
cd Python-3.7.2
|
|
./configure
|
|
make -j4
|
|
sudo make install
|
|
cd ~
|
|
else
|
|
echo "Python up to date"
|
|
fi
|
|
|
|
|
|
# Install python3 specific tools (run multiple times to make sure success)
|
|
pip3 install wheel setuptools
|
|
pip3 install bitstring lnd-grpc pycoin aiohttp connectrum python-bitcoinlib
|
|
|
|
|
|
# Install Rust
|
|
if [ ! -f /tmp/installed_rust ]; then
|
|
wget https://sh.rustup.rs -O /tmp/setup_rust.sh
|
|
/bin/bash /tmp/setup_rust.sh -y
|
|
touch /tmp/installed_rust
|
|
fi
|
|
|
|
# Install node
|
|
if [ ! -f /tmp/installed_node ]; then
|
|
curl -sL https://deb.nodesource.com/setup_11.x | bash -
|
|
apt-get install -y nodejs
|
|
touch /tmp/installed_node
|
|
fi
|
|
|
|
# Install node packages
|
|
npm install -g pug-cli browserify uglify-js babel-cli
|
|
|
|
# Remove existing MOTD login info
|
|
rm -rf /etc/motd
|
|
rm -rf /etc/update-motd.d/*
|
|
|
|
|
|
#########################################################
|
|
|
|
|
|
# Install Bitcoin
|
|
ARCH="arm-linux-gnueabihf"
|
|
if [ $IS_ROCK64 = 1 ]; then
|
|
ARCH="aarch64-linux-gnu"
|
|
fi
|
|
BTC_UPGRADE_URL=https://bitcoin.org/bin/bitcoin-core-0.18.0/bitcoin-0.18.0-$ARCH.tar.gz
|
|
BTC_UPGRADE_URL_FILE=/home/bitcoin/.mynode/.btc_url
|
|
CURRENT=""
|
|
if [ -f $BTC_UPGRADE_URL_FILE ]; then
|
|
CURRENT=$(cat $BTC_UPGRADE_URL_FILE)
|
|
fi
|
|
if [ "$CURRENT" != "$BTC_UPGRADE_URL" ]; then
|
|
rm -rf /tmp/download
|
|
mkdir -p /tmp/download
|
|
cd /tmp/download
|
|
|
|
wget $BTC_UPGRADE_URL -O bitcoin.tar.gz
|
|
tar -xvf bitcoin.tar.gz
|
|
mv bitcoin-* bitcoin
|
|
install -m 0755 -o root -g root -t /usr/local/bin bitcoin/bin/*
|
|
|
|
sudo -u bitcoin ln -s /mnt/hdd/mynode/bitcoin /home/bitcoin/.bitcoin
|
|
sudo -u bitcoin ln -s /mnt/hdd/mynode/lnd /home/bitcoin/.lnd
|
|
mkdir /home/admin/.bitcoin
|
|
mkdir -p /home/bitcoin/.mynode/
|
|
chown -R bitcoin:bitcoin /home/bitcoin/.mynode/
|
|
echo $BTC_UPGRADE_URL > $BTC_UPGRADE_URL_FILE
|
|
fi
|
|
cd ~
|
|
|
|
# Install Lightning
|
|
LND_UPGRADE_URL=https://github.com/lightningnetwork/lnd/releases/download/v0.7.0-beta/lnd-linux-armv7-v0.7.0-beta.tar.gz
|
|
LND_UPGRADE_URL_FILE=/home/bitcoin/.mynode/.lnd_url
|
|
CURRENT=""
|
|
if [ -f $LND_UPGRADE_URL_FILE ]; then
|
|
CURRENT=$(cat $LND_UPGRADE_URL_FILE)
|
|
fi
|
|
if [ "$CURRENT" != "$LND_UPGRADE_URL" ]; then
|
|
rm -rf /tmp/download
|
|
mkdir -p /tmp/download
|
|
cd /tmp/download
|
|
|
|
wget $LND_UPGRADE_URL -O lnd.tar.gz
|
|
tar -xzf lnd.tar.gz
|
|
mv lnd-* lnd
|
|
install -m 0755 -o root -g root -t /usr/local/bin lnd/*
|
|
ln -s /bin/ip /usr/bin/ip
|
|
|
|
mkdir -p /home/bitcoin/.mynode/
|
|
chown -R bitcoin:bitcoin /home/bitcoin/.mynode/
|
|
echo $LND_UPGRADE_URL > $LND_UPGRADE_URL_FILE
|
|
fi
|
|
cd ~
|
|
|
|
# Setup "install" location for some apps
|
|
mkdir -p /opt/mynode
|
|
chown -R bitcoin:bitcoin /opt/mynode
|
|
|
|
|
|
# Install LND Hub
|
|
if [ ! -f /tmp/installed_lndhub ]; then
|
|
cd /opt/mynode
|
|
rm -rf LndHub
|
|
sudo -u bitcoin git clone https://github.com/BlueWallet/LndHub.git
|
|
cd LndHub
|
|
sudo -u bitcoin npm install
|
|
sudo -u bitcoin ln -s /home/bitcoin/.lnd/tls.cert tls.cert
|
|
sudo -u bitcoin ln -s /home/bitcoin/.lnd/data/chain/bitcoin/mainnet/admin.macaroon admin.macaroon
|
|
touch /tmp/installed_lndhub
|
|
fi
|
|
|
|
# Install electrs (only build to save new version, now included in overlay)
|
|
#cd /home/admin/download
|
|
#wget https://github.com/romanz/electrs/archive/v0.7.0.tar.gz
|
|
#tar -xvf v0.7.0.tar.gz
|
|
#cd electrs-0.7.0
|
|
#cargo build --release
|
|
#sudo install -g root -o root target/release/electrs /usr/bin/electrs
|
|
#cd ~
|
|
|
|
|
|
# Install RTL
|
|
if [ ! -f /tmp/installed_rtl ]; then
|
|
cd /opt/mynode
|
|
rm -rf RTL
|
|
sudo -u bitcoin wget https://github.com/ShahanaFarooqui/RTL/archive/v0.3.3.tar.gz -O RTL.tar.gz
|
|
sudo -u bitcoin tar -xvf RTL.tar.gz
|
|
sudo -u bitcoin rm RTL.tar.gz
|
|
sudo -u bitcoin mv RTL-* RTL
|
|
cd RTL
|
|
sudo -u bitcoin npm install
|
|
touch /tmp/installed_rtl
|
|
fi
|
|
|
|
|
|
# Install LND Admin
|
|
if [ ! -f /tmp/installed_lndadmin ]; then
|
|
cd /opt/mynode
|
|
rm -rf lnd-admin
|
|
sudo -u bitcoin wget https://github.com/janoside/lnd-admin/archive/v0.10.12.tar.gz -O lnd-admin.tar.gz
|
|
sudo -u bitcoin tar -xvf lnd-admin.tar.gz
|
|
sudo -u bitcoin rm lnd-admin.tar.gz
|
|
sudo -u bitcoin mv lnd-* lnd-admin
|
|
cd lnd-admin
|
|
sudo -u bitcoin npm install
|
|
touch /tmp/installed_lndadmin
|
|
fi
|
|
|
|
|
|
# Install Bitcoin RPC Explorer
|
|
if [ ! -f /tmp/installed_btcrpcexplorer ]; then
|
|
cd /opt/mynode
|
|
rm -rf btc-rpc-explorer
|
|
sudo -u bitcoin wget https://github.com/janoside/btc-rpc-explorer/archive/v1.0.3.tar.gz -O btc-rpc-explorer.tar.gz
|
|
sudo -u bitcoin tar -xvf btc-rpc-explorer.tar.gz
|
|
sudo -u bitcoin rm btc-rpc-explorer.tar.gz
|
|
sudo -u bitcoin mv btc-rpc-* btc-rpc-explorer
|
|
cd btc-rpc-explorer
|
|
sudo -u bitcoin npm install
|
|
touch /tmp/installed_btcrpcexplorer
|
|
fi
|
|
|
|
|
|
# Install LND Connect
|
|
if [ ! -f /tmp/installed_lndconnect ]; then
|
|
rm -rf /tmp/download
|
|
mkdir -p /tmp/download
|
|
cd /tmp/download
|
|
wget https://github.com/LN-Zap/lndconnect/releases/download/v0.1.0/lndconnect-linux-armv7-v0.1.0.tar.gz -O lndconnect.tar.gz
|
|
tar -xvf lndconnect.tar.gz
|
|
rm lndconnect.tar.gz
|
|
mv lndconnect-* lndconnect
|
|
install -m 0755 -o root -g root -t /usr/local/bin lndconnect/*
|
|
touch /tmp/installed_lndconnect
|
|
fi
|
|
|
|
#########################################################
|
|
|
|
|
|
# Copy myNode rootfs
|
|
rm -rf /tmp/rootfs.tar.gz
|
|
rm -rf /tmp/upgrade/
|
|
mkdir -p /tmp/upgrade
|
|
|
|
TARBALL=""
|
|
if [ $IS_ROCK64 = 1 ]; then
|
|
TARBALL="mynode_rootfs_rock64.tar.gz"
|
|
elif [ $IS_RASPI3 = 1 ]; then
|
|
TARBALL="mynode_rootfs_raspi3.tar.gz"
|
|
elif [ $IS_RASPI4 = 1 ]; then
|
|
TARBALL="mynode_rootfs_raspi4.tar.gz"
|
|
fi
|
|
wget http://${SERVER_IP}:8000/${TARBALL} -O /tmp/rootfs.tar.gz
|
|
|
|
tar -xvf /tmp/rootfs.tar.gz -C /tmp/upgrade/
|
|
|
|
# Install files
|
|
cp -rf /tmp/upgrade/out/rootfs_*/* /
|
|
sleep 1
|
|
sync
|
|
sleep 1
|
|
|
|
|
|
# Setup myNode Startup Script
|
|
systemctl daemon-reload
|
|
systemctl enable mynode
|
|
systemctl enable quicksync
|
|
systemctl enable torrent_check
|
|
systemctl enable firewall
|
|
systemctl enable bandwidth
|
|
systemctl enable www
|
|
systemctl enable drive_check
|
|
systemctl enable bitcoind
|
|
systemctl enable lnd
|
|
systemctl enable lnd_unlock
|
|
systemctl enable lnd_backup
|
|
systemctl enable lnd_admin_files
|
|
systemctl enable lndconnect
|
|
systemctl enable redis-server
|
|
systemctl enable mongodb
|
|
#systemctl enable electrs # DISABLED BY DEFAULT
|
|
#systemctl enable lndhub # DISABLED BY DEFAULT
|
|
#systemctl enable btc_rpc_explorer # DISABLED BY DEFAULT
|
|
systemctl enable tls_proxy
|
|
systemctl enable rtl
|
|
systemctl enable lnd_admin
|
|
systemctl enable tor
|
|
|
|
|
|
# Delete junk
|
|
rm -rf /home/admin/download
|
|
rm -rf /home/admin/.bash_history
|
|
rm -rf /home/bitcoin/.bash_history
|
|
rm -rf /root/.bash_history
|
|
rm -rf /root/.ssh/known_hosts
|
|
rm -rf /etc/resolv.conf
|
|
rm -rf /tmp/*
|
|
rm -rf ~/setup_device.sh
|
|
rm -rf /etc/motd # Remove simple motd for update-motd.d
|
|
|
|
sync
|
|
|
|
set +x
|
|
echo ""
|
|
echo ""
|
|
echo "##################################"
|
|
echo " SETUP COMPLETE "
|
|
echo " Reboot your device to begin! "
|
|
echo "##################################"
|
|
echo ""
|
|
echo ""
|
|
|
|
### MAKE IMAGE NOW ###
|
|
# This prevents auto gen files like certs to be part of the base image
|
|
# Must make sure image can boot after this point and fully come up
|
|
|
|
|