Skip to content

Instantly share code, notes, and snippets.

@ketominer
Created October 29, 2018 19:52
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ketominer/9913bc84125b70cae3e71916310c472b to your computer and use it in GitHub Desktop.
Save ketominer/9913bc84125b70cae3e71916310c472b to your computer and use it in GitHub Desktop.
build NBxplorer and BTCPay on arm32 (raspberry pi)
### As root
apt-get install libc6 libstdc++6 libssl-dev libssl1.0.0 libzstd1 libicu-dev
wget https://download.microsoft.com/download/8/A/7/8A765126-50CA-4C6F-890B-19AE47961E4B/dotnet-sdk-2.1.402-linux-arm.tar.gz
mkdir /opt/dotnet32
tar zxf dotnet-sdk-2.1.402-linux-arm.tar.gz -C /opt/dotnet32
echo export DOTNET_ROOT=/opt/dotnet32 >> /etc/profile
echo export PATH=\$PATH:/opt/dotnet32 >> /etc/profile
### As user running the services
git clone https://github.com/dgarage/NBxplorer
git clone https://github.com/btcpayserver/btcpayserver
cd ~/NBxplorer
git checkout v1.1.0.4
./build.sh
screen -S NBxplorer ./run.sh
cd ~/btcpayserver
git checkout v1.0.3.1
./build.sh
screen -S btcpayserver ./run.sh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment