This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| I am successfully running a local electrum server, getting its data from dojo. This is useful for private use of hardware wallets. | |
| Step 1: As Laurent MT suggested in the Samourai telegram group, you need to edit the docker-compose.yaml file, adding to the bitcoind section the following two lines | |
| ports: | |
| - "127.0.0.1:28256:28256" | |
| Step 2: Follow install directions for electrs, an electrum server written in rust. | |
| electrs install directions can be found here: https://github.com/romanz/electrs/blob/master/doc/usage.md |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ###### User friendly interface script for use with ./dojo [command] ###### | |
| I set it up to be used with passwordless root login via ssh, as you need to be root to utilize | |
| the ./dojo [commands], also because I run everything headless from my laptop. This may not be | |
| for you if you don't want to permit root login to the machine running your Dojo. I have my VMs | |
| set up with passwordless pubkeys and UFW so that my host machine is the only one that can login | |
| to the VMs via ssh. It is somewhat of a security risk if you do not structure yourself properly, | |
| so please be cautious. | |
| At the end of the script there is haggard documentation on how to setup ssh pubkeys. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # wget https://gist.github.com/openoms/7d62d0e02f121bc5d668ed4e1be1ebba/raw/a362385adfce44ad130af39e2ccc60086128173f/do-lndbackup.sh | |
| # sudo chmod +x do-lndbackup.sh | |
| # sudo ./do-lndbackup.sh | |
| # DROPBOX API KEY | |
| APITOKEN="DROPBOX-API-KEY" | |
| if [ $APITOKEN="DROPBOX-API-KEY" ] ; then |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #Install Dot-Net for ARM | |
| cd /home/admin | |
| sudo apt-get -y install libunwind8 gettext | |
| wget https://download.visualstudio.microsoft.com/download/pr/201cbc49-c122-4653-a6c6-0680643d9a26/1951cfc077d868a31563a5a172d18d78/dotnet-sdk-2.1.500-linux-arm.tar.gz | |
| wget https://download.visualstudio.microsoft.com/download/pr/9c5d6af2-868c-4021-8b25-4913daca41c3/46cfc8ddb9b8f10ebd56de1b1a534e32/aspnetcore-runtime-2.1.6-linux-arm.tar.gz | |
| sudo mkdir /opt/dotnet | |
| sudo tar -xvf dotnet-sdk-2.1.500-linux-arm.tar.gz -C /opt/dotnet/ | |
| sudo tar -xvf aspnetcore-runtime-2.1.6-linux-arm.tar.gz -C /opt/dotnet/ | |
| sudo ln -s /opt/dotnet/dotnet /usr/local/bin | |
| dotnet --info |
NewerOlder