diff --git a/images/RaspiBlitz_Logo_Berry.png b/images/RaspiBlitz_Logo_Berry.png
new file mode 100644
index 0000000..bb4a104
Binary files /dev/null and b/images/RaspiBlitz_Logo_Berry.png differ
diff --git a/joinmarket/joinmarket_logo.png b/images/joinmarket_logo.png
similarity index 100%
rename from joinmarket/joinmarket_logo.png
rename to images/joinmarket_logo.png
diff --git a/images/raspilogo_400px.png b/images/raspilogo_400px.png
new file mode 100644
index 0000000..7b60aff
Binary files /dev/null and b/images/raspilogo_400px.png differ
diff --git a/joinmarket/README.md b/joinmarket/README.md
index 73bec47..c5258b9 100644
--- a/joinmarket/README.md
+++ b/joinmarket/README.md
@@ -1,5 +1,8 @@
-
+
+
+
+
## JoinMarket on the RaspiBlitz
diff --git a/zerotier/README.md b/zerotier/README.md
index fbfae50..a55a821 100644
--- a/zerotier/README.md
+++ b/zerotier/README.md
@@ -2,7 +2,7 @@
ZeroTier is a VPN service which is an easy option to connect remotely when neither port forwarding nor using Tor is possible (e.g. iOS on a remote network)
-The drawback is that it requires installing a trusted package which gives access to your private network.
+The drawback is that it requires installing a trusted (open-source) package which gives access to your private network.
Steps to install:
@@ -12,11 +12,11 @@ Steps to install:
Use a STRONG PASSWORD as anyone with your credentials will have access to your private network.
* Click `Create a network` then record your `Network ID`.
-* Install ZeroTier on the RaspiBlitz (more details on https://www.zerotier.com/download.shtml):
-```
-$ curl -s 'https://raw.githubusercontent.com/zerotier/ZeroTierOne/master/doc/contact%40zerotier.com.gpg' | gpg --import && \
-if z=$(curl -s 'https://install.zerotier.com/' | gpg); then echo "$z" | sudo bash; fi
-```
+* Install ZeroTier on the RaspiBlitz (more details on https://www.zerotier.com/download.shtml):
+ ```
+ $ curl -s 'https://raw.githubusercontent.com/zerotier/ZeroTierOne/master/doc/contact%40zerotier.com.gpg' | gpg --import && \
+ if z=$(curl -s 'https://install.zerotier.com/' | gpg); then echo "$z" | sudo bash; fi
+ ```
* Then run:
@@ -26,13 +26,20 @@ if z=$(curl -s 'https://install.zerotier.com/' | gpg); then echo "$z" | sudo bas
* Open https://my.zerotier.com `Networks` menu and accept the new devices pending approval.
* On the Raspiblitz modify the lnd.conf manually:
-`$ nano /home/admin/.lnd/lnd.conf`
-add the line:
-`tlsextraip=172.X`
-CTRL+O and ENTER to save, CTRL+X to exit
+`$ sudo nano /mnt/hdd/lnd/lnd.conf`
+
+ add the line:
+ ```
+ tlsextraip=172.X
+ ```
+ CTRL+O and ENTER to save, CTRL+X to exit
+
+ Restart LND and unlock:
+ `$ sudo systemctl restart lnd`
+ `$ lncli unlock`
* Renew the TLS certificates either from the EXPORT menu or run:
-`./config.scripts/lnd.newtlscert.sh`
+`$ ./config.scripts/lnd.newtlscert.sh`
After setting up and activating ZeroTier on my Android phone successfully tested:
* ZeusLN using the IP 172.x.x.x and port 8080
@@ -40,16 +47,14 @@ After setting up and activating ZeroTier on my Android phone successfully tested
* Termius to connect with ssh to admin@172.x.x.x
---
* To uninstall run:
-```
-sudo systemctl stop zerotier-one
-sudo apt remove zerotier-one
-sudo rm -r /var/lib/zerotier-one
-```
+ ```bash
+ $ sudo systemctl stop zerotier-one
+ $ sudo apt remove zerotier-one
+ $ sudo rm -r /var/lib/zerotier-one
+ ```
---
This guide is based on: https://medium.com/@ketominer/using-nodl-remotely-with-zerotier-a9a17cbb48cf
Discussion: https://github.com/rootzoll/raspiblitz/issues/601
-
-