raspiblitz/home.admin/50copyHDD.sh

175 lines
5.6 KiB
Bash
Raw Normal View History

2019-01-30 09:48:25 +00:00
#!/bin/bash
## get basic info
2019-02-13 02:33:27 +01:00
source /home/admin/raspiblitz.info
2019-01-30 09:48:25 +00:00
# get local ip
localip=$(ip addr | grep 'state UP' -A2 | tail -n1 | awk '{print $2}' | cut -f1 -d'/')
2019-03-15 18:12:22 +01:00
# Basic Options
OPTIONS=(UNIX "MacOS or Linux" \
WINDOWS "Windows"
)
CHOICE=$(dialog --clear --title "Which System is running on the other computer?" --menu "" 11 60 6 "${OPTIONS[@]}" 2>&1 >/dev/tty)
clear
case $CHOICE in
UNIX) echo "Linus";;
WINDOWS) echo "Bill";;
*) exit 1;;
esac
# additional prep if this is used to replace corrupted blockchain
if [ "${setupStep}" = "100" ]; then
# make sure services are not running
echo "stopping servcies ..."
sudo systemctl stop lnd
2019-02-16 00:19:39 +01:00
sudo systemctl stop bitcoind
2019-02-16 01:17:39 +01:00
sudo cp -f /mnt/hdd/bitcoin/bitcoin.conf /home/admin/assets/bitcoin.conf
fi
2019-03-18 00:46:15 +01:00
if [ -d "/mnt/hdd/bitcoin" ]; then
dialog --title "Fresh or Repair" --yesno "Do you want to delete the old/local blockchain data now?" 8 60
response=$?
echo "response(${response})"
2019-03-18 00:48:32 +01:00
if [ "${response}" = "1" ]; then
2019-03-18 00:46:15 +01:00
echo "OK - keep old blockchain - just try to repair by copying over it"
sleep 3
else
echo "OK - delete old blockchain"
# delete all IN bitcoin directory but not itself if it exists
# so that possibel link to /home/bitcoin/.bitcoin nicht beschädigt wird
# also keep debug logs for repair script
sudo mv /mnt/hdd/bitcoin/debug.log /home/admin/debug.log 2>/dev/null
sudo rm -rfv /mnt/hdd/bitcoin/* 2>/dev/null
sudo mv /home/admin/debug.log /mnt/hdd/bitcoin/debug.log 2>/dev/null
sleep 3
fi
fi
2019-02-15 23:19:43 +01:00
# make sure /mnt/hdd/bitcoin exists
sudo mkdir /mnt/hdd/bitcoin 2>/dev/null
2019-03-15 17:56:06 +01:00
# allow all users write to it
2019-02-15 23:19:43 +01:00
sudo chmod 777 /mnt/hdd/bitcoin
2019-01-30 09:48:25 +00:00
2019-03-17 03:58:53 +01:00
echo
2019-01-30 09:48:25 +00:00
clear
echo "************************************************************************************"
echo "Instructions to COPY/TRANSFER SYNCED BLOCKCHAIN from another computer"
echo "************************************************************************************"
echo ""
2019-06-30 02:45:20 +02:00
echo "You can use the blockchain from another bitcoin-core client with version"
echo "greater or equal to 0.17.1."
2019-01-30 09:48:25 +00:00
echo ""
echo "Both computers (your RaspberryPi and the other computer with the full blockchain on) need"
echo "to be connected to the same local network."
echo ""
2019-01-30 17:44:12 +00:00
echo "Open a terminal on the source computer and change into the directory that contains the"
echo "blockchain data. You should see directories 'blocks', 'chainstate'".
2019-01-30 09:48:25 +00:00
echo "Make sure the bitcoin client on that computer is stopped."
echo ""
echo "COPY, PASTE & EXECUTE the following command on the blockchain source computer:"
2019-03-15 17:56:06 +01:00
if [ "${CHOICE}" = "WINDOWS" ]; then
echo "sudo scp -r ./chainstate ./blocks bitcoin@${localip}:/mnt/hdd/bitcoin"
2019-03-15 17:56:06 +01:00
else
echo "sudo rsync -avhW --progress ./chainstate ./blocks bitcoin@${localip}:/mnt/hdd/bitcoin"
2019-03-15 18:20:16 +01:00
fi
2019-02-14 16:59:14 +01:00
echo ""
echo "This command may ask you first about the admin password of the other computer (because sudo)."
echo "Then it will ask for your SSH PASSWORD A from this RaspiBlitz."
2019-01-30 09:48:25 +00:00
echo "It can take multiple hours until transfer is complete - be patient."
echo "************************************************************************************"
echo "PRESS ENTER if transfers is done OR if you want to choose another another option."
2019-02-10 20:13:12 +01:00
sleep 2
2019-01-30 09:48:25 +00:00
read key
# make quick check if data is there
anyDataAtAll=0
quickCheckOK=1
count=$(sudo ls /mnt/hdd/bitcoin/blocks 2>/dev/null | grep -c '.dat')
if [ ${count} -gt 0 ]; then
echo "Found data in /mnt/hdd/bitcoin/blocks"
anyDataAtAll=1
fi
if [ ${count} -lt 3000 ]; then
echo "FAIL: transfere seems invalid - less then 3000 .dat files (${count})"
quickCheckOK=0
fi
count=$(sudo ls /mnt/hdd/bitcoin/chainstate 2>/dev/null | grep -c '.ldb')
if [ ${count} -gt 0 ]; then
echo "Found data in /mnt/hdd/bitcoin/chainstate"
anyDataAtAll=1
fi
if [ ${count} -lt 1400 ]; then
echo "FAIL: transfere seems invalid - less then 1400 .ldb files (${count})"
quickCheckOK=0
fi
2019-02-15 23:19:43 +01:00
echo "*********************************************"
echo "QUICK CHECK RESULT"
echo "*********************************************"
2019-01-30 09:48:25 +00:00
# just if any data transferred ..
if [ ${anyDataAtAll} -eq 1 ]; then
2019-01-30 12:16:25 +00:00
# data was invalid - ask user to keep?
2019-01-30 09:48:25 +00:00
if [ ${quickCheckOK} -eq 0 ]; then
2019-02-15 23:19:43 +01:00
echo "FAIL -> DATA seems incomplete."
else
echo "OK -> DATA LOOKS GOOD :D"
2019-03-17 03:58:53 +01:00
sudo rm /mnt/hdd/bitcoin/debug.log
2019-02-15 23:19:43 +01:00
2019-01-30 09:48:25 +00:00
fi
else
2019-02-15 23:19:43 +01:00
echo "CANCEL -> NO DATA was copied."
quickCheckOK=0
fi
echo "*********************************************"
# if started after intial setup - quit here
if [ "${setupStep}" = "100" ]; then
2019-02-16 00:39:32 +01:00
sudo cp /home/admin/assets/bitcoin.conf /mnt/hdd/bitcoin/bitcoin.conf
2019-03-18 00:46:15 +01:00
rpcpass=$(sudo cat /mnt/hdd/lnd/lnd.conf | grep 'bitcoind.rpcpass' | cut -d "=" -f2)
2019-02-16 00:39:32 +01:00
sudo chown bitcoin:bitcoin /mnt/hdd/bitcoin/bitcoin.conf
2019-03-18 00:46:15 +01:00
sudo sed -i "s/^rpcpassword=.*/rpcpassword=${rpcpass}/g" /mnt/hdd/bitcoin/bitcoin.conf 2>/dev/null
2019-02-16 00:39:32 +01:00
sudo systemctl enable bitcoind
2019-03-18 00:18:30 +01:00
echo "DONE - rebooting: sudo shutdown -r now"
sudo shutdown -r now
2019-02-15 23:19:43 +01:00
exit 0
fi
# REACT ON QUICK CHECK DURING INITAL SETUP
if [ ${quickCheckOK} -eq 0 ]; then
echo "*********************************************"
echo "There seems to be an invalid transfer."
echo "Wait 5 secs ..."
sleep 5
dialog --title " INVALID TRANSFER - DELETE DATA?" --yesno "Quickcheck shows the data you transferred is invalid/incomplete. This can lead further RaspiBlitz setup to get stuck in error state.\nDo you want to reset/delete data data?" 8 60
response=$?
echo "response(${response})"
case $response in
1) quickCheckOK=1 ;;
esac
2019-01-30 09:48:25 +00:00
2019-02-15 23:19:43 +01:00
fi
if [ ${quickCheckOK} -eq 0 ]; then
echo "Deleting invalid Data ... "
2019-01-30 09:48:25 +00:00
sudo rm -rf /mnt/hdd/bitcoin
2019-02-10 20:11:47 +01:00
sleep 2
2019-01-30 09:48:25 +00:00
fi
2019-02-15 23:19:43 +01:00
# setup script will decide the next logical step
/home/admin/10setupBlitz.sh