Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kevinelliott/4a2769d7f75a00bfa3a32467a3729af0 to your computer and use it in GitHub Desktop.
Save kevinelliott/4a2769d7f75a00bfa3a32467a3729af0 to your computer and use it in GitHub Desktop.
Installing Blockstream Satellite on Raspberry Pi 3B

Installing Blockstream Satellite on Raspberry Pi 3B

Raspberry Pi 3B is architecture armhf (arm7l + floating point) but you can install the Ubuntu MATE experimental amd64 image.

Install Ubuntu MATE

  1. Download image
  2. Decompress image
  3. Write image to SD card
  4. Insert SD card into Raspberry Pi 3B
  5. Boot up the Raspberry Pi 3B
  6. Setup wifi
  7. Update the system with sudo apt update && sudo apt upgrade && sudo apt autoremove

Setup Blockstream Satellite

Add repository

Install packages

sudo apt install satellite

Setup Bitcoin FIBRE

Install support packages

sudo apt update
sudo apt install build-essential automakers libtool pkg-config libdb4.8-dev libdb4.8++-dev libssl-dev libevent-dev libclang-dev

Download Bitcoin FIBRE and compile

git clone https://github.com/bitcoinfibre/bitcoinfibre.git`
cd bitcoinfibre
./autogen.sh
./configure
make
sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment