diff --git a/page/raspiblitz.md b/page/raspiblitz.md new file mode 100644 index 0000000..9df8c40 --- /dev/null +++ b/page/raspiblitz.md @@ -0,0 +1,25 @@ +How to disable datacarrier on Raspiblitz. +=== + +1. SSH to your your Raspiblitz device: + +Usually the user is `admin` and the default password is `raspiblitz` + +```bash +ssh admin@[YOURIP] +``` + +2. Use the key combo `Ctrl + c` to escape the UI. +3. Enter this command to disable datacarrier. + +```bash +sudo bash -c 'echo "datacarrier=0" >> /mnt/hdd/bitcoin/bitcoin.conf' +``` + +4. restart bitcoind. + +```bash +sudo systemctl restart bitcoind.service +``` + +Done! \ No newline at end of file