From 0cae68a5ec0baa5e64fb1769d3d63dbc710a22e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9o=20Haf?= Date: Wed, 16 Apr 2025 15:22:33 +0200 Subject: [PATCH] add raspiblitz page --- page/raspiblitz.md | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 page/raspiblitz.md 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