Kaynağa Gözat

Merge branch 'stretch' of https://github.com/bashrc/freedombone

Bob Mottram 7 yıl önce
ebeveyn
işleme
dcee3075c4

+ 11
- 0
doc/EN/faq.org Dosyayı Görüntüle

27
 | [[How is Tor integrated with Freedombone?]]                                                   |
27
 | [[How is Tor integrated with Freedombone?]]                                                   |
28
 | [[Can I add a clearnet domain to an onion build?]]                                            |
28
 | [[Can I add a clearnet domain to an onion build?]]                                            |
29
 | [[Why use Github?]]                                                                           |
29
 | [[Why use Github?]]                                                                           |
30
+| [[What are the data protection implications of running this system?]]                         |
30
 | [[After using nmap or other scanning tool I can no longer log in]]                            |
31
 | [[After using nmap or other scanning tool I can no longer log in]]                            |
31
 | [[Should I upload my GPG keys to keybase.io?]]                                                |
32
 | [[Should I upload my GPG keys to keybase.io?]]                                                |
32
 | [[Keys and emails should not be stored on servers. Why do you do that?]]                      |
33
 | [[Keys and emails should not be stored on servers. Why do you do that?]]                      |
135
 The source code for this project is experimentally independently hosted, and it is expected that in future the main development will shift over to an independent site, maybe with mirrors on Github if it still exists in a viable form.
136
 The source code for this project is experimentally independently hosted, and it is expected that in future the main development will shift over to an independent site, maybe with mirrors on Github if it still exists in a viable form.
136
 
137
 
137
 Currently many of the repositories used for applications which are not yet packaged for Debian are on Github, and to provide some degree of resilliance against depending too much upon that copies of them also exist within disk images.
138
 Currently many of the repositories used for applications which are not yet packaged for Debian are on Github, and to provide some degree of resilliance against depending too much upon that copies of them also exist within disk images.
139
+* What are the data protection implications of running this system?
140
+Data protection laws such as [[https://en.wikipedia.org/wiki/General_Data_Protection_Regulation][GDPR]] in the EU or the [[https://en.wikipedia.org/wiki/Data_Protection_Act_1998][Data Protection Act]] in the UK usually only apply to formal organizations which are recognized as being legal entities. So you have to be running a business or a charity or some other formal organization in order for the storage of what's known as /personally identifying information/ to potentially become a legal issue. Laws like this usually include:
141
+
142
+ * A right to obtain your information
143
+ * A right to be forgotten (i.e. to have your data permanently deleted)
144
+ * Ensuring that stored personal data remains accurate
145
+
146
+If you're self-hosting then in the language of data protection law the "/data controller/" and the "/data subject/" are one and the same, so there isn't any power differential of that sort. Freedombone is only intended for small numbers of users, so if you are hosting more than one person chances are that you know the others quite well and can arrange to update their data or delete their account if that's needed. Even if data protection laws are later extended to include home server type scenarios it's unlikely that this will become a problem.
147
+
148
+For the mesh version similar applies. Each peer stores their own personal data and it never gets aggregated and stored in any centralized way.
138
 * After using nmap or other scanning tool I can no longer log in
149
 * After using nmap or other scanning tool I can no longer log in
139
 This system tries to block port scanners. Any other system trying to scan for open ports will have their IP address added to a temporary block list for 24 hours.
150
 This system tries to block port scanners. Any other system trying to scan for open ports will have their IP address added to a temporary block list for 24 hours.
140
 * Should I upload my GPG keys to keybase.io?
151
 * Should I upload my GPG keys to keybase.io?

+ 4
- 4
src/freedombone-app-postactiv Dosyayı Görüntüle

65
     domain_name=$1
65
     domain_name=$1
66
 
66
 
67
     if [ -f "/var/www/${domain_name}/htdocs/static/logo.png" ]; then
67
     if [ -f "/var/www/${domain_name}/htdocs/static/logo.png" ]; then
68
-        if [ -f ~/freedombone/img/postactiv.png ]; then
69
-            cp ~/freedombone/img/postactiv.png "/var/www/${domain_name}/htdocs/static/logo.png"
68
+        if [ -f "$HOME/${PROJECT_NAME}/img/postactiv.png" ]; then
69
+            cp "$HOME/${PROJECT_NAME}/img/postactiv.png" "/var/www/${domain_name}/htdocs/static/logo.png"
70
         else
70
         else
71
-            if [ -f "/home/$MY_USERNAME/freedombone/img/postactiv.png" ]; then
72
-                cp "/home/$MY_USERNAME/freedombone/img/postactiv.png" "/var/www/${domain_name}/htdocs/static/logo.png"
71
+            if [ -f "/home/$MY_USERNAME/${PROJECT_NAME}/img/postactiv.png" ]; then
72
+                cp "/home/$MY_USERNAME/${PROJECT_NAME}/img/postactiv.png" "/var/www/${domain_name}/htdocs/static/logo.png"
73
             fi
73
             fi
74
         fi
74
         fi
75
     fi
75
     fi

+ 4
- 4
src/freedombone-app-searx Dosyayı Görüntüle

56
 }
56
 }
57
 
57
 
58
 function searx_set_default_background {
58
 function searx_set_default_background {
59
-    if [ -f ~/freedombone/img/backgrounds/searx.jpg ]; then
60
-        cp ~/freedombone/img/backgrounds/searx.jpg /etc/searx/searx/static/themes/courgette/img/bg-body-index.jpg
59
+    if [ -f "$HOME/${PROJECT_NAME}/img/backgrounds/searx.jpg" ]; then
60
+        cp "$HOME/${PROJECT_NAME}/img/backgrounds/searx.jpg" /etc/searx/searx/static/themes/courgette/img/bg-body-index.jpg
61
         chown -R searx:searx ${SEARX_PATH}/searx
61
         chown -R searx:searx ${SEARX_PATH}/searx
62
     else
62
     else
63
-        if [ -f "/home/$MY_USERNAME/freedombone/img/backgrounds/searx.jpg" ]; then
64
-            cp "/home/$MY_USERNAME/freedombone/img/backgrounds/searx.jpg" "/etc/searx/searx/static/themes/courgette/img/bg-body-index.jpg"
63
+        if [ -f "/home/$MY_USERNAME/${PROJECT_NAME}/img/backgrounds/searx.jpg" ]; then
64
+            cp "/home/$MY_USERNAME/${PROJECT_NAME}/img/backgrounds/searx.jpg" "/etc/searx/searx/static/themes/courgette/img/bg-body-index.jpg"
65
             chown -R searx:searx ${SEARX_PATH}/searx
65
             chown -R searx:searx ${SEARX_PATH}/searx
66
         fi
66
         fi
67
     fi
67
     fi

+ 4
- 4
src/freedombone-app-xmpp Dosyayı Görüntüle

377
 
377
 
378
     if [ ! -f "$INSTALL_DIR/$prosody_modules_filename" ]; then
378
     if [ ! -f "$INSTALL_DIR/$prosody_modules_filename" ]; then
379
         # Obtain the modules
379
         # Obtain the modules
380
-        if [ -f ~/freedombone/image_build/$prosody_modules_filename ]; then
381
-            cp ~/freedombone/image_build/$prosody_modules_filename "$INSTALL_DIR"
380
+        if [ -f "$HOME/${PROJECT_NAME}/image_build/$prosody_modules_filename" ]; then
381
+            cp "$HOME/${PROJECT_NAME}/image_build/$prosody_modules_filename" "$INSTALL_DIR"
382
         else
382
         else
383
-            if [ -f "/home/$MY_USERNAME/freedombone/image_build/$prosody_modules_filename" ]; then
384
-                cp "/home/$MY_USERNAME/freedombone/image_build/$prosody_modules_filename" "$INSTALL_DIR"
383
+            if [ -f "/home/$MY_USERNAME/${PROJECT_NAME}/image_build/$prosody_modules_filename" ]; then
384
+                cp "/home/$MY_USERNAME/${PROJECT_NAME}/image_build/$prosody_modules_filename" "$INSTALL_DIR"
385
             fi
385
             fi
386
         fi
386
         fi
387
 
387
 

+ 1
- 1
src/freedombone-config Dosyayı Görüntüle

138
     echo ''
138
     echo ''
139
     echo ''
139
     echo ''
140
     echo $'  -h --help                         Show help'
140
     echo $'  -h --help                         Show help'
141
-    echo $'  -f --filename                     Configuration file (usually freedombone.cfg)'
141
+    echo $"  -f --filename                     Configuration file (usually ${PROJECT_NAME}.cfg)"
142
     echo $'  -m --min                          Minimum password length (characters)'
142
     echo $'  -m --min                          Minimum password length (characters)'
143
     echo $'  -w --www                          Freedombone web site'
143
     echo $'  -w --www                          Freedombone web site'
144
     echo $'  -o --onion [yes|no]               Whether to only create .onion sites'
144
     echo $'  -o --onion [yes|no]               Whether to only create .onion sites'

+ 1
- 1
src/freedombone-image Dosyayı Görüntüle

244
             cd "$USERHOME/develop/multipath-tools" || exit 27462454
244
             cd "$USERHOME/develop/multipath-tools" || exit 27462454
245
             makepkg --force --noconfirm
245
             makepkg --force --noconfirm
246
             makepkg -i --force --noconfirm
246
             makepkg -i --force --noconfirm
247
-            sudo wget "https://raw.githubusercontent.com/bashrc/freedombone/master/image_build/debootstrap/scripts/${DEBIAN_VERSION}" -O /usr/share/debootstrap/scripts/debscript
247
+            sudo wget "https://raw.githubusercontent.com/bashrc/${PROJECT_NAME}/master/image_build/debootstrap/scripts/${DEBIAN_VERSION}" -O /usr/share/debootstrap/scripts/debscript
248
             sudo cp -f "/usr/share/debootstrap/scripts/debscript" "/usr/share/debootstrap/scripts/${DEBIAN_VERSION}"
248
             sudo cp -f "/usr/share/debootstrap/scripts/debscript" "/usr/share/debootstrap/scripts/${DEBIAN_VERSION}"
249
             if [ ! -f "/usr/share/debootstrap/scripts/${DEBIAN_VERSION}" ]; then
249
             if [ ! -f "/usr/share/debootstrap/scripts/${DEBIAN_VERSION}" ]; then
250
                 echo $"No debian debootstrap script was found for $DEBIAN_VERSION"
250
                 echo $"No debian debootstrap script was found for $DEBIAN_VERSION"

+ 3
- 3
src/freedombone-image-customise Dosyayı Görüntüle

441
       echo "                    echo 'User=root' >> /etc/systemd/system/wifistart.service";
441
       echo "                    echo 'User=root' >> /etc/systemd/system/wifistart.service";
442
       echo "                    echo 'Group=root' >> /etc/systemd/system/wifistart.service";
442
       echo "                    echo 'Group=root' >> /etc/systemd/system/wifistart.service";
443
       echo "                    echo 'WorkingDirectory=/root' >> /etc/systemd/system/wifistart.service";
443
       echo "                    echo 'WorkingDirectory=/root' >> /etc/systemd/system/wifistart.service";
444
-      echo "                    echo 'ExecStart=/usr/local/bin/freedombone-wifi --wait 5 2> /dev/null' >> /etc/systemd/system/wifistart.service";
444
+      echo "                    echo 'ExecStart=/usr/local/bin/${PROJECT_NAME}-wifi --wait 5 2> /dev/null' >> /etc/systemd/system/wifistart.service";
445
       echo "                    echo '' >> /etc/systemd/system/wifistart.service";
445
       echo "                    echo '' >> /etc/systemd/system/wifistart.service";
446
       echo "                    echo '[Install]' >> /etc/systemd/system/wifistart.service";
446
       echo "                    echo '[Install]' >> /etc/systemd/system/wifistart.service";
447
       echo "                    echo 'WantedBy=multi-user.target' >> /etc/systemd/system/wifistart.service";
447
       echo "                    echo 'WantedBy=multi-user.target' >> /etc/systemd/system/wifistart.service";
487
 }
487
 }
488
 
488
 
489
 atheros_wifi() {
489
 atheros_wifi() {
490
-    chroot "$rootdir" dpkg -i /root/freedombone/drivers/firmware-ath9k-htc.deb
490
+    chroot "$rootdir" dpkg -i /root/${PROJECT_NAME}/drivers/firmware-ath9k-htc.deb
491
     chroot "$rootdir" apt-get -yq install firmware-linux-free
491
     chroot "$rootdir" apt-get -yq install firmware-linux-free
492
 }
492
 }
493
 
493
 
1530
             echo 'Comment[it]=Crea un invito per patchwork' >> /home/$MY_USERNAME/Desktop/invite.desktop
1530
             echo 'Comment[it]=Crea un invito per patchwork' >> /home/$MY_USERNAME/Desktop/invite.desktop
1531
             echo 'Comment[ru]=    ' >> /home/$MY_USERNAME/Desktop/invite.desktop
1531
             echo 'Comment[ru]=    ' >> /home/$MY_USERNAME/Desktop/invite.desktop
1532
             echo 'Comment[zh]=' >> /home/$MY_USERNAME/Desktop/invite.desktop
1532
             echo 'Comment[zh]=' >> /home/$MY_USERNAME/Desktop/invite.desktop
1533
-            echo 'Exec=mate-terminal -e freedombone-mesh-invite' >> /home/$MY_USERNAME/Desktop/invite.desktop
1533
+            echo 'Exec=mate-terminal -e ${PROJECT_NAME}-mesh-invite' >> /home/$MY_USERNAME/Desktop/invite.desktop
1534
             echo 'Icon=/usr/share/$PROJECT_NAME/avatars/icon_invite.png' >> /home/$MY_USERNAME/Desktop/invite.desktop
1534
             echo 'Icon=/usr/share/$PROJECT_NAME/avatars/icon_invite.png' >> /home/$MY_USERNAME/Desktop/invite.desktop
1535
             echo 'Terminal=false' >> /home/$MY_USERNAME/Desktop/invite.desktop
1535
             echo 'Terminal=false' >> /home/$MY_USERNAME/Desktop/invite.desktop
1536
             echo 'Categories=Application;' >> /home/$MY_USERNAME/Desktop/invite.desktop
1536
             echo 'Categories=Application;' >> /home/$MY_USERNAME/Desktop/invite.desktop

+ 1
- 1
src/freedombone-image-vmdebootstrap Dosyayı Görüntüle

30
 export TEXTDOMAINDIR="/usr/share/locale"
30
 export TEXTDOMAINDIR="/usr/share/locale"
31
 
31
 
32
 VMDEBOOTSTRAP_REPO="https://github.com/bashrc/vmdebootstrap"
32
 VMDEBOOTSTRAP_REPO="https://github.com/bashrc/vmdebootstrap"
33
-VMDEBOOTSTRAP_BRANCH='bashrc/freedombone'
33
+VMDEBOOTSTRAP_BRANCH="bashrc/${PROJECT_NAME}"
34
 
34
 
35
 mkdir -p vendor
35
 mkdir -p vendor
36
 if [ -d vendor/vmdebootstrap ] ; then
36
 if [ -d vendor/vmdebootstrap ] ; then

+ 1
- 1
src/freedombone-mesh-blog Dosyayı Görüntüle

88
 }
88
 }
89
 
89
 
90
 function view_blog {
90
 function view_blog {
91
-    freedombone-mesh-visit-site '/Blog'
91
+    ${PROJECT_NAME}-mesh-visit-site '/Blog'
92
     exit 0
92
     exit 0
93
 }
93
 }
94
 
94
 

+ 3
- 3
src/freedombone-prepare-scripts Dosyayı Görüntüle

30
 
30
 
31
 cat /usr/local/bin/${PROJECT_NAME}-vars /usr/share/${PROJECT_NAME}/utils/${PROJECT_NAME}-utils-* /usr/share/${PROJECT_NAME}/apps/${PROJECT_NAME}-app-* > /tmp/includescripts
31
 cat /usr/local/bin/${PROJECT_NAME}-vars /usr/share/${PROJECT_NAME}/utils/${PROJECT_NAME}-utils-* /usr/share/${PROJECT_NAME}/apps/${PROJECT_NAME}-app-* > /tmp/includescripts
32
 
32
 
33
-cat /tmp/includescripts /usr/local/bin/freedombone-controlpanel > /usr/local/bin/control
34
-cat /tmp/includescripts /usr/local/bin/freedombone-controlpanel-user > /usr/local/bin/controluser
35
-cat /tmp/includescripts /usr/local/bin/freedombone-addremove > /usr/local/bin/addremove
33
+cat /tmp/includescripts /usr/local/bin/${PROJECT_NAME}-controlpanel > /usr/local/bin/control
34
+cat /tmp/includescripts /usr/local/bin/${PROJECT_NAME}-controlpanel-user > /usr/local/bin/controluser
35
+cat /tmp/includescripts /usr/local/bin/${PROJECT_NAME}-addremove > /usr/local/bin/addremove
36
 
36
 
37
 sed -i '/# Start including files/,/# End including files/d' /usr/local/bin/control
37
 sed -i '/# Start including files/,/# End including files/d' /usr/local/bin/control
38
 sed -i '/# Start including files/,/# End including files/d' /usr/local/bin/controluser
38
 sed -i '/# Start including files/,/# End including files/d' /usr/local/bin/controluser

+ 1
- 1
src/freedombone-upgrade Dosyayı Görüntüle

64
 if [ -f /usr/bin/backupdatabases ]; then
64
 if [ -f /usr/bin/backupdatabases ]; then
65
     if grep -q "cat /root/dbpass" /usr/bin/backupdatabases; then
65
     if grep -q "cat /root/dbpass" /usr/bin/backupdatabases; then
66
         # update to using the password manager
66
         # update to using the password manager
67
-        sed -i "s|cat /root/dbpass|freedombone-pass -u root -a mariadb|g" /usr/bin/backupdatabases
67
+        sed -i "s|cat /root/dbpass|${PROJECT_NAME}-pass -u root -a mariadb|g" /usr/bin/backupdatabases
68
     fi
68
     fi
69
 fi
69
 fi
70
 
70
 

+ 2
- 2
src/freedombone-utils-dns Dosyayı Görüntüle

119
     fi
119
     fi
120
 
120
 
121
     # add the update command to cron
121
     # add the update command to cron
122
-    if ! grep -q "/usr/local/bin/freedombone-freedns" /etc/crontab; then
122
+    if ! grep -q "/usr/local/bin/${PROJECT_NAME}-freedns" /etc/crontab; then
123
         function_check cron_add_mins
123
         function_check cron_add_mins
124
-        cron_add_mins 3 '/usr/local/bin/freedombone-freedns'
124
+        cron_add_mins 3 "/usr/local/bin/${PROJECT_NAME}-freedns"
125
         systemctl restart cron
125
         systemctl restart cron
126
     fi
126
     fi
127
 
127
 

+ 1
- 1
src/freedombone-utils-gnusocialtools Dosyayı Görüntüle

484
       echo "database_name=\$1";
484
       echo "database_name=\$1";
485
       echo "remove_user=\$2";
485
       echo "remove_user=\$2";
486
       echo "domain_name=\$3";
486
       echo "domain_name=\$3";
487
-      echo "MARIADB_PASSWORD=\$(freedombone-pass -u root -a mariadb)";
487
+      echo "MARIADB_PASSWORD=\$(${PROJECT_NAME}-pass -u root -a mariadb)";
488
       echo '';
488
       echo '';
489
       echo "if [ \${#remove_user} -lt 2 ]; then";
489
       echo "if [ \${#remove_user} -lt 2 ]; then";
490
       echo '  echo $"No user was specified"';
490
       echo '  echo $"No user was specified"';

+ 2
- 2
src/freedombone-utils-mesh Dosyayı Görüntüle

182
     if [ ! -f /var/www/html/images/trifa.png ]; then
182
     if [ ! -f /var/www/html/images/trifa.png ]; then
183
         cp "/root/$PROJECT_NAME/img/trifa.png" /var/www/html/images/trifa.png
183
         cp "/root/$PROJECT_NAME/img/trifa.png" /var/www/html/images/trifa.png
184
     fi
184
     fi
185
-    if [ ! -f /var/www/html/freedombone.css ]; then
186
-        cp "/root/$PROJECT_NAME/website/freedombone.css" /var/www/html/freedombone.css
185
+    if [ ! -f "/var/www/html/${PROJECT_NAME}.css" ]; then
186
+        cp "/root/$PROJECT_NAME/website/${PROJECT_NAME}.css" "/var/www/html/${PROJECT_NAME}.css"
187
     fi
187
     fi
188
     chown -R www-data:www-data /var/www/html/*
188
     chown -R www-data:www-data /var/www/html/*
189
 }
189
 }

+ 2
- 2
src/freedombone-utils-wifi Dosyayı Görüntüle

88
 
88
 
89
     atheros_drivers_file=drivers/firmware-ath9k-htc.deb
89
     atheros_drivers_file=drivers/firmware-ath9k-htc.deb
90
     if [ ! -f $atheros_drivers_file ]; then
90
     if [ ! -f $atheros_drivers_file ]; then
91
-        if [ ! -f ~/freedombone/$atheros_drivers_file ]; then
91
+        if [ ! -f "$HOME/${PROJECT_NAME}/$atheros_drivers_file" ]; then
92
             return
92
             return
93
         else
93
         else
94
-            atheros_drivers_file=~/freedombone/$atheros_drivers_file
94
+            atheros_drivers_file="$HOME/${PROJECT_NAME}/$atheros_drivers_file"
95
         fi
95
         fi
96
     else
96
     else
97
         atheros_drivers_file=$(pwd)/$atheros_drivers_file
97
         atheros_drivers_file=$(pwd)/$atheros_drivers_file

+ 174
- 148
website/EN/faq.html Dosyayı Görüntüle

3
 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3
 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
4
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
4
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
5
 <head>
5
 <head>
6
-<!-- 2018-04-22 Sun 17:22 -->
6
+<!-- 2018-05-02 Wed 10:48 -->
7
 <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
7
 <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
8
 <meta name="viewport" content="width=device-width, initial-scale=1" />
8
 <meta name="viewport" content="width=device-width, initial-scale=1" />
9
 <title>&lrm;</title>
9
 <title>&lrm;</title>
262
 </colgroup>
262
 </colgroup>
263
 <tbody>
263
 <tbody>
264
 <tr>
264
 <tr>
265
-<td class="org-left"><a href="#org9d9db8e">What applications are supported?</a></td>
265
+<td class="org-left"><a href="#org93b2b96">What applications are supported?</a></td>
266
 </tr>
266
 </tr>
267
 
267
 
268
 <tr>
268
 <tr>
269
-<td class="org-left"><a href="#orgb7afc6a">I don't have a static IP address. Can I still install this system?</a></td>
269
+<td class="org-left"><a href="#org6b1a1dc">I don't have a static IP address. Can I still install this system?</a></td>
270
 </tr>
270
 </tr>
271
 
271
 
272
 <tr>
272
 <tr>
273
-<td class="org-left"><a href="#org65c636f">What are the best microSD cards to use?</a></td>
273
+<td class="org-left"><a href="#orgf904a2b">What are the best microSD cards to use?</a></td>
274
 </tr>
274
 </tr>
275
 
275
 
276
 <tr>
276
 <tr>
277
-<td class="org-left"><a href="#orgeeb7892">On a single board computer can I boot from an external SSD or hard drive?</a></td>
277
+<td class="org-left"><a href="#orgd5b8a5e">On a single board computer can I boot from an external SSD or hard drive?</a></td>
278
 </tr>
278
 </tr>
279
 
279
 
280
 <tr>
280
 <tr>
281
-<td class="org-left"><a href="#orgb396274">Why Freedombone and not FreedomBox?</a></td>
281
+<td class="org-left"><a href="#org5e06ace">Why Freedombone and not FreedomBox?</a></td>
282
 </tr>
282
 </tr>
283
 
283
 
284
 <tr>
284
 <tr>
285
-<td class="org-left"><a href="#orgfced681">Why not support building images for Raspberry Pi?</a></td>
285
+<td class="org-left"><a href="#org84e7731">Why not support building images for Raspberry Pi?</a></td>
286
 </tr>
286
 </tr>
287
 
287
 
288
 <tr>
288
 <tr>
289
-<td class="org-left"><a href="#org3077cce">Why use Tor? I've heard it's used by bad people</a></td>
289
+<td class="org-left"><a href="#orgfa08e9c">Why use Tor? I've heard it's used by bad people</a></td>
290
 </tr>
290
 </tr>
291
 
291
 
292
 <tr>
292
 <tr>
293
-<td class="org-left"><a href="#org3552fe9">How is Tor integrated with Freedombone?</a></td>
293
+<td class="org-left"><a href="#org047311c">How is Tor integrated with Freedombone?</a></td>
294
 </tr>
294
 </tr>
295
 
295
 
296
 <tr>
296
 <tr>
297
-<td class="org-left"><a href="#org6742965">Can I add a clearnet domain to an onion build?</a></td>
297
+<td class="org-left"><a href="#org8a3b2df">Can I add a clearnet domain to an onion build?</a></td>
298
 </tr>
298
 </tr>
299
 
299
 
300
 <tr>
300
 <tr>
301
-<td class="org-left"><a href="#orga8ad014">Why use Github?</a></td>
301
+<td class="org-left"><a href="#org7f5c083">Why use Github?</a></td>
302
 </tr>
302
 </tr>
303
 
303
 
304
 <tr>
304
 <tr>
305
-<td class="org-left"><a href="#orgbe6f7d6">After using nmap or other scanning tool I can no longer log in</a></td>
305
+<td class="org-left"><a href="#org8fe35e9">What are the data protection implications of running this system?</a></td>
306
 </tr>
306
 </tr>
307
 
307
 
308
 <tr>
308
 <tr>
309
-<td class="org-left"><a href="#orgccf9366">Should I upload my GPG keys to keybase.io?</a></td>
309
+<td class="org-left"><a href="#org972c439">After using nmap or other scanning tool I can no longer log in</a></td>
310
 </tr>
310
 </tr>
311
 
311
 
312
 <tr>
312
 <tr>
313
-<td class="org-left"><a href="#orgb40484c">Keys and emails should not be stored on servers. Why do you do that?</a></td>
313
+<td class="org-left"><a href="#org67aacdc">Should I upload my GPG keys to keybase.io?</a></td>
314
 </tr>
314
 </tr>
315
 
315
 
316
 <tr>
316
 <tr>
317
-<td class="org-left"><a href="#org20ae1ad">Why can't I access my .onion site with a Tor browser?</a></td>
317
+<td class="org-left"><a href="#orgbc89a7d">Keys and emails should not be stored on servers. Why do you do that?</a></td>
318
 </tr>
318
 </tr>
319
 
319
 
320
 <tr>
320
 <tr>
321
-<td class="org-left"><a href="#org31eab79">What is the best hardware to run this system on?</a></td>
321
+<td class="org-left"><a href="#org4d0819e">Why can't I access my .onion site with a Tor browser?</a></td>
322
 </tr>
322
 </tr>
323
 
323
 
324
 <tr>
324
 <tr>
325
-<td class="org-left"><a href="#orge1f68c9">Can I add more users to the system?</a></td>
325
+<td class="org-left"><a href="#org7256ac2">What is the best hardware to run this system on?</a></td>
326
 </tr>
326
 </tr>
327
 
327
 
328
 <tr>
328
 <tr>
329
-<td class="org-left"><a href="#orgcd439e3">Why not use Signal for mobile chat?</a></td>
329
+<td class="org-left"><a href="#org890ba4a">Can I add more users to the system?</a></td>
330
 </tr>
330
 </tr>
331
 
331
 
332
 <tr>
332
 <tr>
333
-<td class="org-left"><a href="#orgfa7c5c1">What is the most secure chat app to use on mobile?</a></td>
333
+<td class="org-left"><a href="#org61728f5">Why not use Signal for mobile chat?</a></td>
334
 </tr>
334
 </tr>
335
 
335
 
336
 <tr>
336
 <tr>
337
-<td class="org-left"><a href="#org655d4c9">How do I remove a user from the system?</a></td>
337
+<td class="org-left"><a href="#orgfd44c68">What is the most secure chat app to use on mobile?</a></td>
338
 </tr>
338
 </tr>
339
 
339
 
340
 <tr>
340
 <tr>
341
-<td class="org-left"><a href="#org70bc219">Why is logging for web sites turned off by default?</a></td>
341
+<td class="org-left"><a href="#orgb4af501">How do I remove a user from the system?</a></td>
342
 </tr>
342
 </tr>
343
 
343
 
344
 <tr>
344
 <tr>
345
-<td class="org-left"><a href="#org2649234">How do I reset the tripwire?</a></td>
345
+<td class="org-left"><a href="#orgc664233">Why is logging for web sites turned off by default?</a></td>
346
 </tr>
346
 </tr>
347
 
347
 
348
 <tr>
348
 <tr>
349
-<td class="org-left"><a href="#orgfdfefa3">Is metadata protected?</a></td>
349
+<td class="org-left"><a href="#orgcfb3562">How do I reset the tripwire?</a></td>
350
 </tr>
350
 </tr>
351
 
351
 
352
 <tr>
352
 <tr>
353
-<td class="org-left"><a href="#org4cd4d7a">How do I create email processing rules?</a></td>
353
+<td class="org-left"><a href="#org693ad33">Is metadata protected?</a></td>
354
 </tr>
354
 </tr>
355
 
355
 
356
 <tr>
356
 <tr>
357
-<td class="org-left"><a href="#orgccba878">Why isn't dynamic DNS working?</a></td>
357
+<td class="org-left"><a href="#org3879dd9">How do I create email processing rules?</a></td>
358
 </tr>
358
 </tr>
359
 
359
 
360
 <tr>
360
 <tr>
361
-<td class="org-left"><a href="#org2bd511f">How do I change my encryption settings?</a></td>
361
+<td class="org-left"><a href="#org2e9552d">Why isn't dynamic DNS working?</a></td>
362
 </tr>
362
 </tr>
363
 
363
 
364
 <tr>
364
 <tr>
365
-<td class="org-left"><a href="#orgcc9b703">How do I get a domain name?</a></td>
365
+<td class="org-left"><a href="#org88c1819">How do I change my encryption settings?</a></td>
366
 </tr>
366
 </tr>
367
 
367
 
368
 <tr>
368
 <tr>
369
-<td class="org-left"><a href="#org221b34b">How do I get a "real" SSL/TLS/HTTPS certificate?</a></td>
369
+<td class="org-left"><a href="#org7fa4cfd">How do I get a domain name?</a></td>
370
 </tr>
370
 </tr>
371
 
371
 
372
 <tr>
372
 <tr>
373
-<td class="org-left"><a href="#org0180711">How do I renew a Let's Encrypt certificate?</a></td>
373
+<td class="org-left"><a href="#org082c153">How do I get a "real" SSL/TLS/HTTPS certificate?</a></td>
374
 </tr>
374
 </tr>
375
 
375
 
376
 <tr>
376
 <tr>
377
-<td class="org-left"><a href="#org019cece">I tried to renew a Let's Encrypt certificate and it failed. What should I do?</a></td>
377
+<td class="org-left"><a href="#org30ff050">How do I renew a Let's Encrypt certificate?</a></td>
378
 </tr>
378
 </tr>
379
 
379
 
380
 <tr>
380
 <tr>
381
-<td class="org-left"><a href="#orge3b3f79">Why not use the services of $company instead? They took the Seppuku pledge</a></td>
381
+<td class="org-left"><a href="#org5e86349">I tried to renew a Let's Encrypt certificate and it failed. What should I do?</a></td>
382
 </tr>
382
 </tr>
383
 
383
 
384
 <tr>
384
 <tr>
385
-<td class="org-left"><a href="#orga476817">Why does my email keep getting rejected as spam by Gmail/etc?</a></td>
385
+<td class="org-left"><a href="#org839eacd">Why not use the services of $company instead? They took the Seppuku pledge</a></td>
386
 </tr>
386
 </tr>
387
 
387
 
388
 <tr>
388
 <tr>
389
-<td class="org-left"><a href="#orgebcf081">Tor is censored/blocked in my area. What can I do?</a></td>
389
+<td class="org-left"><a href="#org7b528f9">Why does my email keep getting rejected as spam by Gmail/etc?</a></td>
390
 </tr>
390
 </tr>
391
 
391
 
392
 <tr>
392
 <tr>
393
-<td class="org-left"><a href="#org97fe227">I want to block a particular domain from getting its content into my social network sites</a></td>
393
+<td class="org-left"><a href="#org840d72e">Tor is censored/blocked in my area. What can I do?</a></td>
394
 </tr>
394
 </tr>
395
 
395
 
396
 <tr>
396
 <tr>
397
-<td class="org-left"><a href="#org5b978bf">The mesh system doesn't boot from USB drive</a></td>
397
+<td class="org-left"><a href="#org4f99713">I want to block a particular domain from getting its content into my social network sites</a></td>
398
 </tr>
398
 </tr>
399
 
399
 
400
 <tr>
400
 <tr>
401
-<td class="org-left"><a href="#orgf1d3c97">Mesh system doesn't connect to the network</a></td>
401
+<td class="org-left"><a href="#org99e5150">The mesh system doesn't boot from USB drive</a></td>
402
+</tr>
403
+
404
+<tr>
405
+<td class="org-left"><a href="#org80b7531">Mesh system doesn't connect to the network</a></td>
402
 </tr>
406
 </tr>
403
 </tbody>
407
 </tbody>
404
 </table>
408
 </table>
405
 </div>
409
 </div>
406
 
410
 
407
-<div id="outline-container-org9d9db8e" class="outline-2">
408
-<h2 id="org9d9db8e">What applications are supported?</h2>
409
-<div class="outline-text-2" id="text-org9d9db8e">
411
+<div id="outline-container-org93b2b96" class="outline-2">
412
+<h2 id="org93b2b96">What applications are supported?</h2>
413
+<div class="outline-text-2" id="text-org93b2b96">
410
 <p>
414
 <p>
411
 <a href="./apps.html">See here</a> for the complete list of apps. In addition to those as part of the base install you get an email server.
415
 <a href="./apps.html">See here</a> for the complete list of apps. In addition to those as part of the base install you get an email server.
412
 </p>
416
 </p>
413
 </div>
417
 </div>
414
 </div>
418
 </div>
415
-<div id="outline-container-orgb7afc6a" class="outline-2">
416
-<h2 id="orgb7afc6a">I don't have a static IP address. Can I still install this system?</h2>
417
-<div class="outline-text-2" id="text-orgb7afc6a">
419
+<div id="outline-container-org6b1a1dc" class="outline-2">
420
+<h2 id="org6b1a1dc">I don't have a static IP address. Can I still install this system?</h2>
421
+<div class="outline-text-2" id="text-org6b1a1dc">
418
 <p>
422
 <p>
419
 Yes. The minimum requirements are to have some hardware that you can install Debian onto and also that you have administrator access to your internet router so that you can forward ports to the system which has Freedombone installed.
423
 Yes. The minimum requirements are to have some hardware that you can install Debian onto and also that you have administrator access to your internet router so that you can forward ports to the system which has Freedombone installed.
420
 </p>
424
 </p>
424
 </p>
428
 </p>
425
 </div>
429
 </div>
426
 </div>
430
 </div>
427
-<div id="outline-container-org65c636f" class="outline-2">
428
-<h2 id="org65c636f">What are the best microSD cards to use?</h2>
429
-<div class="outline-text-2" id="text-org65c636f">
431
+<div id="outline-container-orgf904a2b" class="outline-2">
432
+<h2 id="orgf904a2b">What are the best microSD cards to use?</h2>
433
+<div class="outline-text-2" id="text-orgf904a2b">
430
 <p>
434
 <p>
431
 There can be big differences in the performance of microSD cards, and the cheaper ones are almost invariably terrible and/or unusable. Sandisk and Samsung currently appear to be the better brands. You can find some performance benchmarks <a href="http://www.pidramble.com/wiki/benchmarks/microsd-cards">here</a>. However, benchmarks like this only give a very rough idea of performance and they can vary significantly between individual cards even within the same brand.
435
 There can be big differences in the performance of microSD cards, and the cheaper ones are almost invariably terrible and/or unusable. Sandisk and Samsung currently appear to be the better brands. You can find some performance benchmarks <a href="http://www.pidramble.com/wiki/benchmarks/microsd-cards">here</a>. However, benchmarks like this only give a very rough idea of performance and they can vary significantly between individual cards even within the same brand.
432
 </p>
436
 </p>
433
 </div>
437
 </div>
434
 </div>
438
 </div>
435
-<div id="outline-container-orgeeb7892" class="outline-2">
436
-<h2 id="orgeeb7892">On a single board computer can I boot from an external SSD or hard drive?</h2>
437
-<div class="outline-text-2" id="text-orgeeb7892">
439
+<div id="outline-container-orgd5b8a5e" class="outline-2">
440
+<h2 id="orgd5b8a5e">On a single board computer can I boot from an external SSD or hard drive?</h2>
441
+<div class="outline-text-2" id="text-orgd5b8a5e">
438
 <p>
442
 <p>
439
 Some single board computers, such as Cubieboards or OLinuxino, have a SATA socket on them which enables an external drive to be connected. This is usually intended for extra file storage, but it is also possible to run the operating system from an external drive. This can have the advantage of significantly increasing the read/write performance and your apps will appear to run more quickly.
443
 Some single board computers, such as Cubieboards or OLinuxino, have a SATA socket on them which enables an external drive to be connected. This is usually intended for extra file storage, but it is also possible to run the operating system from an external drive. This can have the advantage of significantly increasing the read/write performance and your apps will appear to run more quickly.
440
 </p>
444
 </p>
465
 </p>
469
 </p>
466
 </div>
470
 </div>
467
 </div>
471
 </div>
468
-<div id="outline-container-orgb396274" class="outline-2">
469
-<h2 id="orgb396274">Why Freedombone and not FreedomBox?</h2>
470
-<div class="outline-text-2" id="text-orgb396274">
472
+<div id="outline-container-org5e06ace" class="outline-2">
473
+<h2 id="org5e06ace">Why Freedombone and not FreedomBox?</h2>
474
+<div class="outline-text-2" id="text-org5e06ace">
471
 <p>
475
 <p>
472
 When the project began in late 2013 the FreedomBox project seemed to be going nowhere, and was only designed to work with the DreamPlug hardware. There was some new hardware out - the Beaglebone Black - which could run Debian and was also a free hardware design so seemed more appropriate. Hence the name "Freedombone", being like FreedomBox but on a Beaglebone. There are some similarities and differences between the two projects:
476
 When the project began in late 2013 the FreedomBox project seemed to be going nowhere, and was only designed to work with the DreamPlug hardware. There was some new hardware out - the Beaglebone Black - which could run Debian and was also a free hardware design so seemed more appropriate. Hence the name "Freedombone", being like FreedomBox but on a Beaglebone. There are some similarities and differences between the two projects:
473
 </p>
477
 </p>
474
 </div>
478
 </div>
475
 
479
 
476
-<div id="outline-container-orgb657b46" class="outline-3">
477
-<h3 id="orgb657b46">Similarities</h3>
478
-<div class="outline-text-3" id="text-orgb657b46">
480
+<div id="outline-container-orgb6fee98" class="outline-3">
481
+<h3 id="orgb6fee98">Similarities</h3>
482
+<div class="outline-text-3" id="text-orgb6fee98">
479
 <ul class="org-ul">
483
 <ul class="org-ul">
480
 <li>Uses freedom-maker and vmdebootstrap to build debian images</li>
484
 <li>Uses freedom-maker and vmdebootstrap to build debian images</li>
481
 <li>Supports the use of Tor onion addresses to access websites</li>
485
 <li>Supports the use of Tor onion addresses to access websites</li>
489
 </ul>
493
 </ul>
490
 </div>
494
 </div>
491
 </div>
495
 </div>
492
-<div id="outline-container-orga534499" class="outline-3">
493
-<h3 id="orga534499">Differences</h3>
494
-<div class="outline-text-3" id="text-orga534499">
496
+<div id="outline-container-org0568d2b" class="outline-3">
497
+<h3 id="org0568d2b">Differences</h3>
498
+<div class="outline-text-3" id="text-org0568d2b">
495
 <ul class="org-ul">
499
 <ul class="org-ul">
496
 <li>FreedomBox is a Debian pure blend. Freedombone is not</li>
500
 <li>FreedomBox is a Debian pure blend. Freedombone is not</li>
497
 <li>Freedombone only supports Free Software. FreedomBox includes some closed binary boot blobs for certain ARM boards</li>
501
 <li>Freedombone only supports Free Software. FreedomBox includes some closed binary boot blobs for certain ARM boards</li>
506
 </div>
510
 </div>
507
 </div>
511
 </div>
508
 </div>
512
 </div>
509
-<div id="outline-container-orgfced681" class="outline-2">
510
-<h2 id="orgfced681">Why not support building images for Raspberry Pi?</h2>
511
-<div class="outline-text-2" id="text-orgfced681">
513
+<div id="outline-container-org84e7731" class="outline-2">
514
+<h2 id="org84e7731">Why not support building images for Raspberry Pi?</h2>
515
+<div class="outline-text-2" id="text-org84e7731">
512
 <p>
516
 <p>
513
 The FreedomBox project supports Raspberry Pi builds, and the image build system for Freedombone is based on the same system. However, although the Raspberry Pi can run a version of Debian it requires a closed proprietary blob in order to boot the hardware. Who knows what that blob might contain or what exploits it could facilitate. From an adversarial point of view if you were trying to deliver "bulk equipment interference" then it doesn't get any better than piggybacking on something which has control of the boot process, and hence all subsequently run processes.
517
 The FreedomBox project supports Raspberry Pi builds, and the image build system for Freedombone is based on the same system. However, although the Raspberry Pi can run a version of Debian it requires a closed proprietary blob in order to boot the hardware. Who knows what that blob might contain or what exploits it could facilitate. From an adversarial point of view if you were trying to deliver "bulk equipment interference" then it doesn't get any better than piggybacking on something which has control of the boot process, and hence all subsequently run processes.
514
 </p>
518
 </p>
518
 </p>
522
 </p>
519
 </div>
523
 </div>
520
 </div>
524
 </div>
521
-<div id="outline-container-org3077cce" class="outline-2">
522
-<h2 id="org3077cce">Why use Tor? I've heard it's used by bad people</h2>
523
-<div class="outline-text-2" id="text-org3077cce">
525
+<div id="outline-container-orgfa08e9c" class="outline-2">
526
+<h2 id="orgfa08e9c">Why use Tor? I've heard it's used by bad people</h2>
527
+<div class="outline-text-2" id="text-orgfa08e9c">
524
 <p>
528
 <p>
525
 Years ago Tor was usually depicted in the mainstream media as something scary inhabited by cyberterrorists and other bad cybers, but today to a large extent Tor is accepted as just another way of routing data in a network. Depending upon where you live there may still be some amount of fearmongering about Tor, but it now seems clear that the trajectory is towards general acceptance.
529
 Years ago Tor was usually depicted in the mainstream media as something scary inhabited by cyberterrorists and other bad cybers, but today to a large extent Tor is accepted as just another way of routing data in a network. Depending upon where you live there may still be some amount of fearmongering about Tor, but it now seems clear that the trajectory is towards general acceptance.
526
 </p>
530
 </p>
541
 </p>
545
 </p>
542
 </div>
546
 </div>
543
 </div>
547
 </div>
544
-<div id="outline-container-org3552fe9" class="outline-2">
545
-<h2 id="org3552fe9">How is Tor integrated with Freedombone?</h2>
546
-<div class="outline-text-2" id="text-org3552fe9">
548
+<div id="outline-container-org047311c" class="outline-2">
549
+<h2 id="org047311c">How is Tor integrated with Freedombone?</h2>
550
+<div class="outline-text-2" id="text-org047311c">
547
 <p>
551
 <p>
548
 Within this project Tor is used more to provide <i>accessibility</i> than the <i>anonymity</i> factor for which Tor is better known. The onion address system provides a way of being able to access sites even if you don't own a conventional domain name or don't have administrator access to your local internet router to be able to do port forwarding.
552
 Within this project Tor is used more to provide <i>accessibility</i> than the <i>anonymity</i> factor for which Tor is better known. The onion address system provides a way of being able to access sites even if you don't own a conventional domain name or don't have administrator access to your local internet router to be able to do port forwarding.
549
 </p>
553
 </p>
561
 </p>
565
 </p>
562
 </div>
566
 </div>
563
 </div>
567
 </div>
564
-<div id="outline-container-org6742965" class="outline-2">
565
-<h2 id="org6742965">Can I add a clearnet domain to an onion build?</h2>
566
-<div class="outline-text-2" id="text-org6742965">
568
+<div id="outline-container-org8a3b2df" class="outline-2">
569
+<h2 id="org8a3b2df">Can I add a clearnet domain to an onion build?</h2>
570
+<div class="outline-text-2" id="text-org8a3b2df">
567
 <p>
571
 <p>
568
 You could if you manually edited the relevant nginx configuration files and installed some dynamic DNS system yourself. If you already have sysadmin knowledge then that's probably not too hard. But the builds created with the <b>onion-addresses-only</b> option aren't really intended to support access via clearnet domains.
572
 You could if you manually edited the relevant nginx configuration files and installed some dynamic DNS system yourself. If you already have sysadmin knowledge then that's probably not too hard. But the builds created with the <b>onion-addresses-only</b> option aren't really intended to support access via clearnet domains.
569
 </p>
573
 </p>
570
 </div>
574
 </div>
571
 </div>
575
 </div>
572
-<div id="outline-container-orga8ad014" class="outline-2">
573
-<h2 id="orga8ad014">Why use Github?</h2>
574
-<div class="outline-text-2" id="text-orga8ad014">
576
+<div id="outline-container-org7f5c083" class="outline-2">
577
+<h2 id="org7f5c083">Why use Github?</h2>
578
+<div class="outline-text-2" id="text-org7f5c083">
575
 <p>
579
 <p>
576
 Github is paradoxically a centralized, closed and proprietary system which happens to mostly host free and open source projects. Up until now it has been relatively benign, but at some point in the name of "growth" it will likely start becoming more evil, or just become like SourceForge - which was also once much loved by FOSS developers, but turned into a den of malvertizing.
580
 Github is paradoxically a centralized, closed and proprietary system which happens to mostly host free and open source projects. Up until now it has been relatively benign, but at some point in the name of "growth" it will likely start becoming more evil, or just become like SourceForge - which was also once much loved by FOSS developers, but turned into a den of malvertizing.
577
 </p>
581
 </p>
589
 </p>
593
 </p>
590
 </div>
594
 </div>
591
 </div>
595
 </div>
592
-<div id="outline-container-orgbe6f7d6" class="outline-2">
593
-<h2 id="orgbe6f7d6">After using nmap or other scanning tool I can no longer log in</h2>
594
-<div class="outline-text-2" id="text-orgbe6f7d6">
596
+<div id="outline-container-org8fe35e9" class="outline-2">
597
+<h2 id="org8fe35e9">What are the data protection implications of running this system?</h2>
598
+<div class="outline-text-2" id="text-org8fe35e9">
599
+<p>
600
+Data protection laws such as <a href="https://en.wikipedia.org/wiki/General_Data_Protection_Regulation">GDPR</a> in the EU or the <a href="https://en.wikipedia.org/wiki/Data_Protection_Act_1998">Data Protection Act</a> in the UK usually only apply to formal organizations which are recognized as being legal entities. So you have to be running a business or a charity or some other formal organization in order for the storage of what's known as <i>personally identifying information</i> to potentially become a legal issue. Laws like this usually include:
601
+</p>
602
+
603
+<ul class="org-ul">
604
+<li>A right to obtain your information</li>
605
+<li>A right to be forgotten (i.e. to have your data permanently deleted)</li>
606
+<li>Ensuring that stored personal data remains accurate</li>
607
+</ul>
608
+
609
+<p>
610
+If you're self-hosting then in the language of data protection law the "<i>data controller</i>" and the "<i>data subject</i>" are one and the same, so there isn't any power differential of that sort. Freedombone is only intended for small numbers of users, so if you are hosting more than one person chances are that you know the others quite well and can arrange to update their data or delete their account if that's needed. Even if data protection laws are later extended to include home server type scenarios it's unlikely that this will become a problem.
611
+</p>
612
+
613
+<p>
614
+For the mesh version similar applies. Each peer stores their own personal data and it never gets aggregated and stored in any centralized way.
615
+</p>
616
+</div>
617
+</div>
618
+<div id="outline-container-org972c439" class="outline-2">
619
+<h2 id="org972c439">After using nmap or other scanning tool I can no longer log in</h2>
620
+<div class="outline-text-2" id="text-org972c439">
595
 <p>
621
 <p>
596
 This system tries to block port scanners. Any other system trying to scan for open ports will have their IP address added to a temporary block list for 24 hours.
622
 This system tries to block port scanners. Any other system trying to scan for open ports will have their IP address added to a temporary block list for 24 hours.
597
 </p>
623
 </p>
598
 </div>
624
 </div>
599
 </div>
625
 </div>
600
-<div id="outline-container-orgccf9366" class="outline-2">
601
-<h2 id="orgccf9366">Should I upload my GPG keys to keybase.io?</h2>
602
-<div class="outline-text-2" id="text-orgccf9366">
626
+<div id="outline-container-org67aacdc" class="outline-2">
627
+<h2 id="org67aacdc">Should I upload my GPG keys to keybase.io?</h2>
628
+<div class="outline-text-2" id="text-org67aacdc">
603
 <p>
629
 <p>
604
 It's not recommended unless there exists some compelling reason for you to be on there. That site asks users to upload the <b>private keys</b>, and even if the keys are client side encrypted with a passphrase there's always the chance that there will be a data leak in future and letter agencies will then have a full time opportunity to crack the passphrases.
630
 It's not recommended unless there exists some compelling reason for you to be on there. That site asks users to upload the <b>private keys</b>, and even if the keys are client side encrypted with a passphrase there's always the chance that there will be a data leak in future and letter agencies will then have a full time opportunity to crack the passphrases.
605
 </p>
631
 </p>
609
 </p>
635
 </p>
610
 </div>
636
 </div>
611
 </div>
637
 </div>
612
-<div id="outline-container-orgb40484c" class="outline-2">
613
-<h2 id="orgb40484c">Keys and emails should not be stored on servers. Why do you do that?</h2>
614
-<div class="outline-text-2" id="text-orgb40484c">
638
+<div id="outline-container-orgbc89a7d" class="outline-2">
639
+<h2 id="orgbc89a7d">Keys and emails should not be stored on servers. Why do you do that?</h2>
640
+<div class="outline-text-2" id="text-orgbc89a7d">
615
 <p>
641
 <p>
616
 Ordinarily this is good advice. However, the threat model for a device in your home is different from the one for a generic server in a massive warehouse. Compare and contrast:
642
 Ordinarily this is good advice. However, the threat model for a device in your home is different from the one for a generic server in a massive warehouse. Compare and contrast:
617
 </p>
643
 </p>
669
 </div>
695
 </div>
670
 </div>
696
 </div>
671
 
697
 
672
-<div id="outline-container-org20ae1ad" class="outline-2">
673
-<h2 id="org20ae1ad">Why can't I access my .onion site with a Tor browser?</h2>
674
-<div class="outline-text-2" id="text-org20ae1ad">
698
+<div id="outline-container-org4d0819e" class="outline-2">
699
+<h2 id="org4d0819e">Why can't I access my .onion site with a Tor browser?</h2>
700
+<div class="outline-text-2" id="text-org4d0819e">
675
 <p>
701
 <p>
676
 Probably you need to add the site to the NoScript whitelist. Typically click/press on the noscript icon (or select from the menu on mobile) then select <i>whitelist</i> and add the site URL. You may also need to disable HTTPS Everywhere when using onion addresses, which don't use https.
702
 Probably you need to add the site to the NoScript whitelist. Typically click/press on the noscript icon (or select from the menu on mobile) then select <i>whitelist</i> and add the site URL. You may also need to disable HTTPS Everywhere when using onion addresses, which don't use https.
677
 </p>
703
 </p>
681
 </p>
707
 </p>
682
 </div>
708
 </div>
683
 </div>
709
 </div>
684
-<div id="outline-container-org31eab79" class="outline-2">
685
-<h2 id="org31eab79">What is the best hardware to run this system on?</h2>
686
-<div class="outline-text-2" id="text-org31eab79">
710
+<div id="outline-container-org7256ac2" class="outline-2">
711
+<h2 id="org7256ac2">What is the best hardware to run this system on?</h2>
712
+<div class="outline-text-2" id="text-org7256ac2">
687
 <p>
713
 <p>
688
 It was originally designed to run on the Beaglebone Black, but that should be regarded as the most minimal system, because it's single core and has by today's standards a small amount of memory. Obviously the more powerful the hardware is the faster things like web pages (blog, social networking, etc) will be served but the more electricity such a system will require if you're running it 24/7. A good compromise between performance and energy consumption is something like an old netbook. The battery of an old netbook or laptop even gives you <a href="https://en.wikipedia.org/wiki/Uninterruptible_power_supply">UPS capability</a> to keep the system going during brief power outages or cable re-arrangements, and that means using full disk encryption on the server also becomes more practical.
714
 It was originally designed to run on the Beaglebone Black, but that should be regarded as the most minimal system, because it's single core and has by today's standards a small amount of memory. Obviously the more powerful the hardware is the faster things like web pages (blog, social networking, etc) will be served but the more electricity such a system will require if you're running it 24/7. A good compromise between performance and energy consumption is something like an old netbook. The battery of an old netbook or laptop even gives you <a href="https://en.wikipedia.org/wiki/Uninterruptible_power_supply">UPS capability</a> to keep the system going during brief power outages or cable re-arrangements, and that means using full disk encryption on the server also becomes more practical.
689
 </p>
715
 </p>
693
 </p>
719
 </p>
694
 </div>
720
 </div>
695
 </div>
721
 </div>
696
-<div id="outline-container-orge1f68c9" class="outline-2">
697
-<h2 id="orge1f68c9">Can I add more users to the system?</h2>
698
-<div class="outline-text-2" id="text-orge1f68c9">
722
+<div id="outline-container-org890ba4a" class="outline-2">
723
+<h2 id="org890ba4a">Can I add more users to the system?</h2>
724
+<div class="outline-text-2" id="text-org890ba4a">
699
 <p>
725
 <p>
700
 Yes. Freedombone can support a small number of users, for a "<i>friends and family</i>" type of home installation. This gives them access to an email account, XMPP, SIP phone and the blog (depending on whether the variant which you installed includes those).
726
 Yes. Freedombone can support a small number of users, for a "<i>friends and family</i>" type of home installation. This gives them access to an email account, XMPP, SIP phone and the blog (depending on whether the variant which you installed includes those).
701
 </p>
727
 </p>
718
 </p>
744
 </p>
719
 </div>
745
 </div>
720
 </div>
746
 </div>
721
-<div id="outline-container-orgcd439e3" class="outline-2">
722
-<h2 id="orgcd439e3">Why not use Signal for mobile chat?</h2>
723
-<div class="outline-text-2" id="text-orgcd439e3">
747
+<div id="outline-container-org61728f5" class="outline-2">
748
+<h2 id="org61728f5">Why not use Signal for mobile chat?</h2>
749
+<div class="outline-text-2" id="text-org61728f5">
724
 <p>
750
 <p>
725
 Celebrities recommend Signal. It's Free Software so it must be good, right?
751
 Celebrities recommend Signal. It's Free Software so it must be good, right?
726
 </p>
752
 </p>
743
 </p>
769
 </p>
744
 </div>
770
 </div>
745
 </div>
771
 </div>
746
-<div id="outline-container-orgfa7c5c1" class="outline-2">
747
-<h2 id="orgfa7c5c1">What is the most secure chat app to use on mobile?</h2>
748
-<div class="outline-text-2" id="text-orgfa7c5c1">
772
+<div id="outline-container-orgfd44c68" class="outline-2">
773
+<h2 id="orgfd44c68">What is the most secure chat app to use on mobile?</h2>
774
+<div class="outline-text-2" id="text-orgfd44c68">
749
 <p>
775
 <p>
750
 On mobile there are various options. The apps which are likely to be most secure are ones which have end-to-end encryption enabled by default and which can also be onion routed via Orbot. End-to-end encryption secures the content of the message and onion routing obscures the metadata, making it hard for a passive adversary to know who is communicating with who.
776
 On mobile there are various options. The apps which are likely to be most secure are ones which have end-to-end encryption enabled by default and which can also be onion routed via Orbot. End-to-end encryption secures the content of the message and onion routing obscures the metadata, making it hard for a passive adversary to know who is communicating with who.
751
 </p>
777
 </p>
755
 </p>
781
 </p>
756
 
782
 
757
 <p>
783
 <p>
758
-There are many <a href="#orgcd439e3">other fashionable chat apps</a> with end-to-end security, but often they are closed source, have a single central server or can't be onion routed. It's also important to remember that closed source chat apps should be assumed to be untrustworthy, since their security cannot be independently verified.
784
+There are many <a href="#org61728f5">other fashionable chat apps</a> with end-to-end security, but often they are closed source, have a single central server or can't be onion routed. It's also important to remember that closed source chat apps should be assumed to be untrustworthy, since their security cannot be independently verified.
759
 </p>
785
 </p>
760
 </div>
786
 </div>
761
 </div>
787
 </div>
762
-<div id="outline-container-org655d4c9" class="outline-2">
763
-<h2 id="org655d4c9">How do I remove a user from the system?</h2>
764
-<div class="outline-text-2" id="text-org655d4c9">
788
+<div id="outline-container-orgb4af501" class="outline-2">
789
+<h2 id="orgb4af501">How do I remove a user from the system?</h2>
790
+<div class="outline-text-2" id="text-orgb4af501">
765
 <p>
791
 <p>
766
 To remove a user:
792
 To remove a user:
767
 </p>
793
 </p>
776
 </p>
802
 </p>
777
 </div>
803
 </div>
778
 </div>
804
 </div>
779
-<div id="outline-container-org70bc219" class="outline-2">
780
-<h2 id="org70bc219">Why is logging for web sites turned off by default?</h2>
781
-<div class="outline-text-2" id="text-org70bc219">
805
+<div id="outline-container-orgc664233" class="outline-2">
806
+<h2 id="orgc664233">Why is logging for web sites turned off by default?</h2>
807
+<div class="outline-text-2" id="text-orgc664233">
782
 <p>
808
 <p>
783
 If you're making profits out of the logs by running large server warehouses and then data mining what users click on - as is the business model of well known internet companies - then logging everything makes total sense. However, if you're running a home server then logging really only makes sense if you're trying to diagnose some specific problem with the system, and outside of that context logging everything becomes more of a liability than an asset.
809
 If you're making profits out of the logs by running large server warehouses and then data mining what users click on - as is the business model of well known internet companies - then logging everything makes total sense. However, if you're running a home server then logging really only makes sense if you're trying to diagnose some specific problem with the system, and outside of that context logging everything becomes more of a liability than an asset.
784
 </p>
810
 </p>
792
 </p>
818
 </p>
793
 </div>
819
 </div>
794
 </div>
820
 </div>
795
-<div id="outline-container-org2649234" class="outline-2">
796
-<h2 id="org2649234">How do I reset the tripwire?</h2>
797
-<div class="outline-text-2" id="text-org2649234">
821
+<div id="outline-container-orgcfb3562" class="outline-2">
822
+<h2 id="orgcfb3562">How do I reset the tripwire?</h2>
823
+<div class="outline-text-2" id="text-orgcfb3562">
798
 <p>
824
 <p>
799
 The tripwire will be automatically reset once per week. If you want to reset it earlier then do the following:
825
 The tripwire will be automatically reset once per week. If you want to reset it earlier then do the following:
800
 </p>
826
 </p>
809
 </p>
835
 </p>
810
 </div>
836
 </div>
811
 </div>
837
 </div>
812
-<div id="outline-container-orgfdfefa3" class="outline-2">
813
-<h2 id="orgfdfefa3">Is metadata protected?</h2>
814
-<div class="outline-text-2" id="text-orgfdfefa3">
838
+<div id="outline-container-org693ad33" class="outline-2">
839
+<h2 id="org693ad33">Is metadata protected?</h2>
840
+<div class="outline-text-2" id="text-org693ad33">
815
 <blockquote>
841
 <blockquote>
816
 <p>
842
 <p>
817
 "<i>We kill people based on metadata</i>"
843
 "<i>We kill people based on metadata</i>"
827
 </p>
853
 </p>
828
 </div>
854
 </div>
829
 </div>
855
 </div>
830
-<div id="outline-container-org4cd4d7a" class="outline-2">
831
-<h2 id="org4cd4d7a">How do I create email processing rules?</h2>
832
-<div class="outline-text-2" id="text-org4cd4d7a">
856
+<div id="outline-container-org3879dd9" class="outline-2">
857
+<h2 id="org3879dd9">How do I create email processing rules?</h2>
858
+<div class="outline-text-2" id="text-org3879dd9">
833
 <div class="org-src-container">
859
 <div class="org-src-container">
834
 <pre class="src src-bash">ssh username@domainname -p 2222
860
 <pre class="src src-bash">ssh username@domainname -p 2222
835
 </pre>
861
 </pre>
885
 </p>
911
 </p>
886
 </div>
912
 </div>
887
 </div>
913
 </div>
888
-<div id="outline-container-orgccba878" class="outline-2">
889
-<h2 id="orgccba878">Why isn't dynamic DNS working?</h2>
890
-<div class="outline-text-2" id="text-orgccba878">
914
+<div id="outline-container-org2e9552d" class="outline-2">
915
+<h2 id="org2e9552d">Why isn't dynamic DNS working?</h2>
916
+<div class="outline-text-2" id="text-org2e9552d">
891
 <p>
917
 <p>
892
 If you run the command:
918
 If you run the command:
893
 </p>
919
 </p>
910
 </div>
936
 </div>
911
 </div>
937
 </div>
912
 
938
 
913
-<div id="outline-container-org2bd511f" class="outline-2">
914
-<h2 id="org2bd511f">How do I change my encryption settings?</h2>
915
-<div class="outline-text-2" id="text-org2bd511f">
939
+<div id="outline-container-org88c1819" class="outline-2">
940
+<h2 id="org88c1819">How do I change my encryption settings?</h2>
941
+<div class="outline-text-2" id="text-org88c1819">
916
 <p>
942
 <p>
917
 Suppose that some new encryption vulnerability has been announced and that you need to change your encryption settings. Maybe an algorithm thought to be secure is now no longer so and you need to remove it. You can change your settings by doing the following:
943
 Suppose that some new encryption vulnerability has been announced and that you need to change your encryption settings. Maybe an algorithm thought to be secure is now no longer so and you need to remove it. You can change your settings by doing the following:
918
 </p>
944
 </p>
927
 </p>
953
 </p>
928
 </div>
954
 </div>
929
 </div>
955
 </div>
930
-<div id="outline-container-orgcc9b703" class="outline-2">
931
-<h2 id="orgcc9b703">How do I get a domain name?</h2>
932
-<div class="outline-text-2" id="text-orgcc9b703">
956
+<div id="outline-container-org7fa4cfd" class="outline-2">
957
+<h2 id="org7fa4cfd">How do I get a domain name?</h2>
958
+<div class="outline-text-2" id="text-org7fa4cfd">
933
 <p>
959
 <p>
934
 Suppose that you have bought a domain name (rather than using a free subdomain on freedns) and you want to use that instead.
960
 Suppose that you have bought a domain name (rather than using a free subdomain on freedns) and you want to use that instead.
935
 </p>
961
 </p>
993
 </div>
1019
 </div>
994
 </div>
1020
 </div>
995
 
1021
 
996
-<div id="outline-container-org221b34b" class="outline-2">
997
-<h2 id="org221b34b">How do I get a "real" SSL/TLS/HTTPS certificate?</h2>
998
-<div class="outline-text-2" id="text-org221b34b">
1022
+<div id="outline-container-org082c153" class="outline-2">
1023
+<h2 id="org082c153">How do I get a "real" SSL/TLS/HTTPS certificate?</h2>
1024
+<div class="outline-text-2" id="text-org082c153">
999
 <p>
1025
 <p>
1000
 If you did the full install or selected the social variant then the system will have tried to obtain a Let's Encrypt certificate automatically during the install process. If this failed for any reason, or if you have created a new site which you need a certificate for then do the following:
1026
 If you did the full install or selected the social variant then the system will have tried to obtain a Let's Encrypt certificate automatically during the install process. If this failed for any reason, or if you have created a new site which you need a certificate for then do the following:
1001
 </p>
1027
 </p>
1014
 </p>
1040
 </p>
1015
 </div>
1041
 </div>
1016
 </div>
1042
 </div>
1017
-<div id="outline-container-org0180711" class="outline-2">
1018
-<h2 id="org0180711">How do I renew a Let's Encrypt certificate?</h2>
1019
-<div class="outline-text-2" id="text-org0180711">
1043
+<div id="outline-container-org30ff050" class="outline-2">
1044
+<h2 id="org30ff050">How do I renew a Let's Encrypt certificate?</h2>
1045
+<div class="outline-text-2" id="text-org30ff050">
1020
 <p>
1046
 <p>
1021
 Normally certificates will be automatically renewed once per month, so you don't need to be concerned about it. If anything goes wrong with the automatic renewal then you should receive a warning email.
1047
 Normally certificates will be automatically renewed once per month, so you don't need to be concerned about it. If anything goes wrong with the automatic renewal then you should receive a warning email.
1022
 </p>
1048
 </p>
1035
 </p>
1061
 </p>
1036
 </div>
1062
 </div>
1037
 </div>
1063
 </div>
1038
-<div id="outline-container-org019cece" class="outline-2">
1039
-<h2 id="org019cece">I tried to renew a Let's Encrypt certificate and it failed. What should I do?</h2>
1040
-<div class="outline-text-2" id="text-org019cece">
1064
+<div id="outline-container-org5e86349" class="outline-2">
1065
+<h2 id="org5e86349">I tried to renew a Let's Encrypt certificate and it failed. What should I do?</h2>
1066
+<div class="outline-text-2" id="text-org5e86349">
1041
 <p>
1067
 <p>
1042
 Most likely it's because Let's Encrypt doesn't support your particular domain or subdomain. Currently free subdomains tend not to work. You'll need to buy a domain name, link it to your dynamic DNS account and then do:
1068
 Most likely it's because Let's Encrypt doesn't support your particular domain or subdomain. Currently free subdomains tend not to work. You'll need to buy a domain name, link it to your dynamic DNS account and then do:
1043
 </p>
1069
 </p>
1052
 </p>
1078
 </p>
1053
 </div>
1079
 </div>
1054
 </div>
1080
 </div>
1055
-<div id="outline-container-orge3b3f79" class="outline-2">
1056
-<h2 id="orge3b3f79">Why not use the services of $company instead? They took the Seppuku pledge</h2>
1057
-<div class="outline-text-2" id="text-orge3b3f79">
1081
+<div id="outline-container-org839eacd" class="outline-2">
1082
+<h2 id="org839eacd">Why not use the services of $company instead? They took the Seppuku pledge</h2>
1083
+<div class="outline-text-2" id="text-org839eacd">
1058
 <p>
1084
 <p>
1059
 <a href="https://cryptostorm.org/viewtopic.php?f=63&amp;t=2954&amp;sid=7de2d1e699cfde2f574e6a7f6ea5a173">That pledge</a> is utterly worthless. Years ago people trusted Google in the same sort of way, because they promised not be be evil and because a lot of the engineers working for them seemed like honest types who were "<i>on our side</i>". Post-<a href="https://en.wikipedia.org/wiki/Nymwars">nymwars</a> and post-<a href="https://en.wikipedia.org/wiki/PRISM_(surveillance_program)">PRISM</a> we know exactly how much Google cared about the privacy and security of its users. But Google is only one particular example. In general don't trust pledges made by companies, even if the people running them seem really sincere.
1085
 <a href="https://cryptostorm.org/viewtopic.php?f=63&amp;t=2954&amp;sid=7de2d1e699cfde2f574e6a7f6ea5a173">That pledge</a> is utterly worthless. Years ago people trusted Google in the same sort of way, because they promised not be be evil and because a lot of the engineers working for them seemed like honest types who were "<i>on our side</i>". Post-<a href="https://en.wikipedia.org/wiki/Nymwars">nymwars</a> and post-<a href="https://en.wikipedia.org/wiki/PRISM_(surveillance_program)">PRISM</a> we know exactly how much Google cared about the privacy and security of its users. But Google is only one particular example. In general don't trust pledges made by companies, even if the people running them seem really sincere.
1060
 </p>
1086
 </p>
1061
 </div>
1087
 </div>
1062
 </div>
1088
 </div>
1063
-<div id="outline-container-orga476817" class="outline-2">
1064
-<h2 id="orga476817">Why does my email keep getting rejected as spam by Gmail/etc?</h2>
1065
-<div class="outline-text-2" id="text-orga476817">
1089
+<div id="outline-container-org7b528f9" class="outline-2">
1090
+<h2 id="org7b528f9">Why does my email keep getting rejected as spam by Gmail/etc?</h2>
1091
+<div class="outline-text-2" id="text-org7b528f9">
1066
 <p>
1092
 <p>
1067
 Welcome to the world of email. Email is really the archetypal decentralized service, developed during the early days of the internet. In principle anyone can run an email server, and that's exactly what you're doing with Freedombone. Email is very useful, but it has a big problem, and that's that the protocols are totally insecure. That made it easy for spammers to do their thing, and in response highly elaborate spam filtering and blocking systems were developed. Chances are that your emails are being blocked in this way. Sometimes the blocking is so indisciminate that entire countries are excluded. What can you do about it? Unless you control the block list at the receiving end you may not be able to do much unless you can find an email proxy server which is trusted by the receiving server.
1093
 Welcome to the world of email. Email is really the archetypal decentralized service, developed during the early days of the internet. In principle anyone can run an email server, and that's exactly what you're doing with Freedombone. Email is very useful, but it has a big problem, and that's that the protocols are totally insecure. That made it easy for spammers to do their thing, and in response highly elaborate spam filtering and blocking systems were developed. Chances are that your emails are being blocked in this way. Sometimes the blocking is so indisciminate that entire countries are excluded. What can you do about it? Unless you control the block list at the receiving end you may not be able to do much unless you can find an email proxy server which is trusted by the receiving server.
1068
 </p>
1094
 </p>
1093
 </p>
1119
 </p>
1094
 </div>
1120
 </div>
1095
 </div>
1121
 </div>
1096
-<div id="outline-container-orgebcf081" class="outline-2">
1097
-<h2 id="orgebcf081">Tor is censored/blocked in my area. What can I do?</h2>
1098
-<div class="outline-text-2" id="text-orgebcf081">
1122
+<div id="outline-container-org840d72e" class="outline-2">
1123
+<h2 id="org840d72e">Tor is censored/blocked in my area. What can I do?</h2>
1124
+<div class="outline-text-2" id="text-org840d72e">
1099
 <p>
1125
 <p>
1100
 If you can find some details for an obfs4 Tor bridge (its IP address, port number and key or nickname) then you can set up the system to use it to connect to the Tor network. Unlike relay nodes the IP addresses for bridges are not public information and so can't be easily known and added to block lists by authoritarian regimes or over-zealous ISPs.
1126
 If you can find some details for an obfs4 Tor bridge (its IP address, port number and key or nickname) then you can set up the system to use it to connect to the Tor network. Unlike relay nodes the IP addresses for bridges are not public information and so can't be easily known and added to block lists by authoritarian regimes or over-zealous ISPs.
1101
 </p>
1127
 </p>
1120
 </div>
1146
 </div>
1121
 </div>
1147
 </div>
1122
 
1148
 
1123
-<div id="outline-container-org97fe227" class="outline-2">
1124
-<h2 id="org97fe227">I want to block a particular domain from getting its content into my social network sites</h2>
1125
-<div class="outline-text-2" id="text-org97fe227">
1149
+<div id="outline-container-org4f99713" class="outline-2">
1150
+<h2 id="org4f99713">I want to block a particular domain from getting its content into my social network sites</h2>
1151
+<div class="outline-text-2" id="text-org4f99713">
1126
 <p>
1152
 <p>
1127
 If you're being pestered by some domain which contains bad/illegal/harrassing content or irritating users you can block domains at the firewall level. Go to the administrator control panel and select <i>domain blocking</i>. You can then block, unblock and view the list of blocked domains.
1153
 If you're being pestered by some domain which contains bad/illegal/harrassing content or irritating users you can block domains at the firewall level. Go to the administrator control panel and select <i>domain blocking</i>. You can then block, unblock and view the list of blocked domains.
1128
 </p>
1154
 </p>
1137
 </div>
1163
 </div>
1138
 </div>
1164
 </div>
1139
 
1165
 
1140
-<div id="outline-container-org5b978bf" class="outline-2">
1141
-<h2 id="org5b978bf">The mesh system doesn't boot from USB drive</h2>
1142
-<div class="outline-text-2" id="text-org5b978bf">
1166
+<div id="outline-container-org99e5150" class="outline-2">
1167
+<h2 id="org99e5150">The mesh system doesn't boot from USB drive</h2>
1168
+<div class="outline-text-2" id="text-org99e5150">
1143
 <p>
1169
 <p>
1144
 If the system doesn't boot and reports an error which includes <b>/dev/mapper/loop0p1</b> then reboot with <b>Ctrl-Alt-Del</b> and when you see the grub menu press <b>e</b> and manually change <b>/dev/mapper/loop0p1</b> to <b>/dev/sdb1</b>, then press <b>Ctrl-x</b>. If that doesn't work then reboot and try <b>/dev/sdc1</b> instead.
1170
 If the system doesn't boot and reports an error which includes <b>/dev/mapper/loop0p1</b> then reboot with <b>Ctrl-Alt-Del</b> and when you see the grub menu press <b>e</b> and manually change <b>/dev/mapper/loop0p1</b> to <b>/dev/sdb1</b>, then press <b>Ctrl-x</b>. If that doesn't work then reboot and try <b>/dev/sdc1</b> instead.
1145
 </p>
1171
 </p>
1150
 </div>
1176
 </div>
1151
 </div>
1177
 </div>
1152
 
1178
 
1153
-<div id="outline-container-orgf1d3c97" class="outline-2">
1154
-<h2 id="orgf1d3c97">Mesh system doesn't connect to the network</h2>
1155
-<div class="outline-text-2" id="text-orgf1d3c97">
1179
+<div id="outline-container-org80b7531" class="outline-2">
1180
+<h2 id="org80b7531">Mesh system doesn't connect to the network</h2>
1181
+<div class="outline-text-2" id="text-org80b7531">
1156
 <p>
1182
 <p>
1157
 Sometimes after boot the mesh system won't connect to other peers on the network. If this happens select the <b>network restart</b> icon and enter the password, which by default is just "freedombone". Wait for a few minutes to see if it connects.
1183
 Sometimes after boot the mesh system won't connect to other peers on the network. If this happens select the <b>network restart</b> icon and enter the password, which by default is just "freedombone". Wait for a few minutes to see if it connects.
1158
 </p>
1184
 </p>