add raspiblitz page

This commit is contained in:
Léo Haf 2025-04-16 15:22:33 +02:00
parent c394b7fbb7
commit 0cae68a5ec
Signed by: Retropex
GPG Key ID: F5073C4F4882FFFC

25
page/raspiblitz.md Normal file
View File

@ -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!