mirror of
https://github.com/openoms/bitcoin-tutorials.git
synced 2026-01-14 17:24:21 +01:00
32 lines
1.3 KiB
Markdown
32 lines
1.3 KiB
Markdown
## Install the Electrum Server in Rust (electrs) on the RaspiBlitz
|
|
Based on https://github.com/romanz/electrs/blob/master/doc/usage.md
|
|
Some shared experiences here: https://github.com/rootzoll/raspiblitz/issues/123
|
|
|
|
Tested on the
|
|
* Odroid HC1 and XU4 (~18 hours)
|
|
* Raspberry Pi 3 B+ (~ two days to build the database from scratch)
|
|
|
|
Requires 47 Gb diskpace (March 2019).
|
|
|
|
The install instructions adapted to the RaspiBlitz are in this script, take a look: https://github.com/openoms/bitcoin-tutorials/blob/master/electrs/electrs_install_on_RaspiBlitz.sh
|
|
|
|
Download this script to your RaspiBlitz:
|
|
`wget https://raw.githubusercontent.com/openoms/bitcoin-tutorials/master/electrs/electrs_install_on_RaspiBlitz.sh`
|
|
make it executable:
|
|
`sudo chmod +x electrs_install_on_RaspiBlitz.sh`
|
|
and run:
|
|
`./electrs_install_on_RaspiBlitz.sh`
|
|
|
|
---
|
|
|
|
## Install, configure and run the Electrum wallet on your Linux desktop
|
|
The instruction are in this script: https://github.com/openoms/bitcoin-tutorials/blob/master/electrs/electrum_install_config_and_run.sh
|
|
|
|
Download this script to your linux desktop:
|
|
`wget https://raw.githubusercontent.com/openoms/bitcoin-tutorials/master/electrs/electrum_install_config_and_run.sh`
|
|
make it executable:
|
|
`sudo chmod +x electrum_install_config_and_run.sh`
|
|
and run:
|
|
`./electrum_install_config_and_run.sh`
|
|
|