瀏覽代碼

Documentation for social instance installs

Bob Mottram 7 年之前
父節點
當前提交
17d7f7fc01
共有 8 個檔案被更改,包括 319 行新增86 行删除
  1. 8
    9
      doc/EN/index.org
  2. 59
    7
      doc/EN/socialinstance.org
  3. 二進制
      img/bios_boot_usb.jpg
  4. 二進制
      img/laptop_router.jpg
  5. 二進制
      img/pleroma_register.jpg
  6. 二進制
      img/port_forwarding.png
  7. 137
    60
      website/EN/index.html
  8. 115
    10
      website/EN/socialinstance.html

+ 8
- 9
doc/EN/index.org 查看文件

@@ -19,15 +19,14 @@
19 19
 
20 20
 So you want to run your own internet services? Email, chat, VoIP, web sites, file synchronisation, wikis, blogs, social networks, media hosting, backups, VPN. Freedombone enables you to do all of that in a self-hosted way, where you keep control of your data and it resides in your own home.
21 21
 
22
-[[./homeserver.html][Here's how]].
23
-
24
-And here's how [[./beaglebone.html][on a Beaglebone Black]]. A list of other supported ARM boards [[./boards.html][can be found here]].
25
-
26
-Or you can install [[./debianinstall.html][onto an existing Debian system]].
27
-
28
-If you have a single board ARM computer which isn't one of the officially supported ones, such as Raspberry Pi, then you may still be able to install [[./armbian.html][Freedombone with Armbian]].
29
-
30
-Want to make a community mesh network which can either be fully autonomous or connected to the internet? The [[./mesh.html][Freedombone Mesh]] is a wireless solution for networked communication that can be rapidly deployed in temporary, emergency or post-disaster situations where internet access is unavailable or compromised, or used as an infrastructural community service similar to [[https://en.wikipedia.org/wiki/Freifunk][Freifunk]].
22
+A list of other supported ARM boards [[./boards.html][can be found here]], or you can install onto an old laptop or netbook. Some installation instructions for different use cases are:
23
+
24
+ * [[./homeserver.html][Typical installation]]
25
+ * Installing [[./beaglebone.html][on a Beaglebone Black]]
26
+ * Installing on an [[./debianinstall.html][existing Debian system]]
27
+ * Installing [[./armbian.html][on Armbian]], for unsupported ARM boards such as Raspberry Pi
28
+ * Creating a dedicated [[./socialinstance.html][fediverse instance]] for a single user or to host a community
29
+ * Deploying a [[./mesh.html][mesh network]] which can operate with or without the internet
31 30
 
32 31
 After installation it's possible that you might want some advice on how to run your system and set up apps to work nicely with it.
33 32
 

+ 59
- 7
doc/EN/socialinstance.org 查看文件

@@ -26,10 +26,62 @@ A social instance image allows you to easily set up a fediverse server, which fe
26 26
 
27 27
 The installation process is the same as usual, with the only difference being that on initial setup it will go straight to the domain setup details for your instance. In summary:
28 28
 
29
- * Copy the image to the USB drive, with the *dd* command or other image copying software
30
- * Connect the laptop to your internet router with the ethernet cable
31
- * Boot the laptop from the USB drive
32
- * Forward ports 80 and 443 from your internet router to the laptop
33
- * From another machine ssh into the laptop with *ssh fbone@freedombone.local -p 2222*
34
- * Follow the setup procedure and enter your domain name and dynamic DNS details
35
- * When installation is complete navigate to your domain and register a new user
29
+* Copy the image to the USB drive
30
+
31
+Substitute *sdX* with the device name for your USB drive.
32
+
33
+#+begin_src bash
34
+sudo apt-get install xz-utils wget
35
+wget https://freedombone.net/downloads/current/freedombone-pleroma-amd64.img.xz
36
+wget https://freedombone.net/downloads/current/freedombone-pleroma-amd64.img.xz.sig
37
+gpg --verify freedombone-pleroma-amd64.img.xz.sig
38
+unxz freedombone-pleroma-amd64.img.xz
39
+sudo dd if=/dev/zero of=/dev/sdX bs=1M count=8
40
+sudo dd bs=1M if=freedombone-pleroma-amd64.img of=/dev/sdX conv=fdatasync
41
+#+end_src
42
+
43
+Also note that if the laptop has a removable SSD drive it's possible to copy the image directly to that if you have enough equipment.
44
+
45
+* Connect the laptop to your internet router
46
+
47
+With the ethernet cable.
48
+
49
+#+BEGIN_CENTER
50
+[[file:images/laptop_router.jpg]]
51
+#+END_CENTER
52
+
53
+* Boot the laptop from the USB drive
54
+
55
+You may need to alter the BIOS settings to get this to work reliably.
56
+
57
+#+BEGIN_CENTER
58
+[[file:images/bios_boot_usb.jpg]]
59
+#+END_CENTER
60
+
61
+* Forward ports 80 (HTTP) and 443 (HTTPS) from your internet router to the laptop
62
+
63
+Log into your internet router using a non-Tor browser (usually it's on an address like 192.168.1.1 or 192.168.1.254). Often port forwarding settings are together with firewall settings.
64
+
65
+#+BEGIN_CENTER
66
+[[file:images/port_forwarding.png]]
67
+#+END_CENTER
68
+
69
+* From another machine ssh into the laptop
70
+
71
+#+begin_src bash
72
+ssh fbone@freedombone.local -p 2222
73
+#+END_SRC
74
+
75
+Or alternatively you can log in directly on the laptop. The initial username is *fbone* and the password is *freedombone*. You should make sure you write down or copy the new password when it is shown.
76
+
77
+* Follow the setup procedure
78
+
79
+Enter your user details, domain name and dynamic DNS settings.
80
+
81
+* When installation is complete
82
+
83
+Navigate to your domain and register a new user.
84
+
85
+#+BEGIN_CENTER
86
+[[file:images/pleroma_register.jpg]]
87
+#+END_CENTER

二進制
img/bios_boot_usb.jpg 查看文件


二進制
img/laptop_router.jpg 查看文件


二進制
img/pleroma_register.jpg 查看文件


二進制
img/port_forwarding.png 查看文件


+ 137
- 60
website/EN/index.html 查看文件

@@ -3,26 +3,33 @@
3 3
 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
4 4
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
5 5
 <head>
6
-<title></title>
7
-<!-- 2018-03-10 Sat 21:04 -->
8
-<meta  http-equiv="Content-Type" content="text/html;charset=utf-8" />
9
-<meta  name="generator" content="Org-mode" />
10
-<meta  name="author" content="Bob Mottram" />
11
-<meta  name="description" content="Turn the Beaglebone Black into a personal communications server"
6
+<!-- 2018-03-13 Tue 12:38 -->
7
+<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
8
+<meta name="viewport" content="width=device-width, initial-scale=1" />
9
+<title>&lrm;</title>
10
+<meta name="generator" content="Org mode" />
11
+<meta name="author" content="Bob Mottram" />
12
+<meta name="description" content="Turn the Beaglebone Black into a personal communications server"
12 13
  />
13
-<meta  name="keywords" content="freedombox, debian, beaglebone, red matrix, email, web server, home server, internet, censorship, surveillance, social network, irc, jabber" />
14
+<meta name="keywords" content="freedombox, debian, beaglebone, red matrix, email, web server, home server, internet, censorship, surveillance, social network, irc, jabber" />
14 15
 <style type="text/css">
15 16
  <!--/*--><![CDATA[/*><!--*/
16
-  .title  { text-align: center; }
17
+  .title  { text-align: center;
18
+             margin-bottom: .2em; }
19
+  .subtitle { text-align: center;
20
+              font-size: medium;
21
+              font-weight: bold;
22
+              margin-top:0; }
17 23
   .todo   { font-family: monospace; color: red; }
18
-  .done   { color: green; }
24
+  .done   { font-family: monospace; color: green; }
25
+  .priority { font-family: monospace; color: orange; }
19 26
   .tag    { background-color: #eee; font-family: monospace;
20 27
             padding: 2px; font-size: 80%; font-weight: normal; }
21 28
   .timestamp { color: #bebebe; }
22 29
   .timestamp-kwd { color: #5f9ea0; }
23
-  .right  { margin-left: auto; margin-right: 0px;  text-align: right; }
24
-  .left   { margin-left: 0px;  margin-right: auto; text-align: left; }
25
-  .center { margin-left: auto; margin-right: auto; text-align: center; }
30
+  .org-right  { margin-left: auto; margin-right: 0px;  text-align: right; }
31
+  .org-left   { margin-left: 0px;  margin-right: auto; text-align: left; }
32
+  .org-center { margin-left: auto; margin-right: auto; text-align: center; }
26 33
   .underline { text-decoration: underline; }
27 34
   #postamble p, #preamble p { font-size: 90%; margin: .2em; }
28 35
   p.verse { margin-left: 3%; }
@@ -49,27 +56,111 @@
49 56
     border: 1px solid black;
50 57
   }
51 58
   pre.src:hover:before { display: inline;}
52
-  pre.src-sh:before    { content: 'sh'; }
53
-  pre.src-bash:before  { content: 'sh'; }
59
+  /* Languages per Org manual */
60
+  pre.src-asymptote:before { content: 'Asymptote'; }
61
+  pre.src-awk:before { content: 'Awk'; }
62
+  pre.src-C:before { content: 'C'; }
63
+  /* pre.src-C++ doesn't work in CSS */
64
+  pre.src-clojure:before { content: 'Clojure'; }
65
+  pre.src-css:before { content: 'CSS'; }
66
+  pre.src-D:before { content: 'D'; }
67
+  pre.src-ditaa:before { content: 'ditaa'; }
68
+  pre.src-dot:before { content: 'Graphviz'; }
69
+  pre.src-calc:before { content: 'Emacs Calc'; }
54 70
   pre.src-emacs-lisp:before { content: 'Emacs Lisp'; }
55
-  pre.src-R:before     { content: 'R'; }
56
-  pre.src-perl:before  { content: 'Perl'; }
57
-  pre.src-java:before  { content: 'Java'; }
58
-  pre.src-sql:before   { content: 'SQL'; }
71
+  pre.src-fortran:before { content: 'Fortran'; }
72
+  pre.src-gnuplot:before { content: 'gnuplot'; }
73
+  pre.src-haskell:before { content: 'Haskell'; }
74
+  pre.src-hledger:before { content: 'hledger'; }
75
+  pre.src-java:before { content: 'Java'; }
76
+  pre.src-js:before { content: 'Javascript'; }
77
+  pre.src-latex:before { content: 'LaTeX'; }
78
+  pre.src-ledger:before { content: 'Ledger'; }
79
+  pre.src-lisp:before { content: 'Lisp'; }
80
+  pre.src-lilypond:before { content: 'Lilypond'; }
81
+  pre.src-lua:before { content: 'Lua'; }
82
+  pre.src-matlab:before { content: 'MATLAB'; }
83
+  pre.src-mscgen:before { content: 'Mscgen'; }
84
+  pre.src-ocaml:before { content: 'Objective Caml'; }
85
+  pre.src-octave:before { content: 'Octave'; }
86
+  pre.src-org:before { content: 'Org mode'; }
87
+  pre.src-oz:before { content: 'OZ'; }
88
+  pre.src-plantuml:before { content: 'Plantuml'; }
89
+  pre.src-processing:before { content: 'Processing.js'; }
90
+  pre.src-python:before { content: 'Python'; }
91
+  pre.src-R:before { content: 'R'; }
92
+  pre.src-ruby:before { content: 'Ruby'; }
93
+  pre.src-sass:before { content: 'Sass'; }
94
+  pre.src-scheme:before { content: 'Scheme'; }
95
+  pre.src-screen:before { content: 'Gnu Screen'; }
96
+  pre.src-sed:before { content: 'Sed'; }
97
+  pre.src-sh:before { content: 'shell'; }
98
+  pre.src-sql:before { content: 'SQL'; }
99
+  pre.src-sqlite:before { content: 'SQLite'; }
100
+  /* additional languages in org.el's org-babel-load-languages alist */
101
+  pre.src-forth:before { content: 'Forth'; }
102
+  pre.src-io:before { content: 'IO'; }
103
+  pre.src-J:before { content: 'J'; }
104
+  pre.src-makefile:before { content: 'Makefile'; }
105
+  pre.src-maxima:before { content: 'Maxima'; }
106
+  pre.src-perl:before { content: 'Perl'; }
107
+  pre.src-picolisp:before { content: 'Pico Lisp'; }
108
+  pre.src-scala:before { content: 'Scala'; }
109
+  pre.src-shell:before { content: 'Shell Script'; }
110
+  pre.src-ebnf2ps:before { content: 'ebfn2ps'; }
111
+  /* additional language identifiers per "defun org-babel-execute"
112
+       in ob-*.el */
113
+  pre.src-cpp:before  { content: 'C++'; }
114
+  pre.src-abc:before  { content: 'ABC'; }
115
+  pre.src-coq:before  { content: 'Coq'; }
116
+  pre.src-groovy:before  { content: 'Groovy'; }
117
+  /* additional language identifiers from org-babel-shell-names in
118
+     ob-shell.el: ob-shell is the only babel language using a lambda to put
119
+     the execution function name together. */
120
+  pre.src-bash:before  { content: 'bash'; }
121
+  pre.src-csh:before  { content: 'csh'; }
122
+  pre.src-ash:before  { content: 'ash'; }
123
+  pre.src-dash:before  { content: 'dash'; }
124
+  pre.src-ksh:before  { content: 'ksh'; }
125
+  pre.src-mksh:before  { content: 'mksh'; }
126
+  pre.src-posh:before  { content: 'posh'; }
127
+  /* Additional Emacs modes also supported by the LaTeX listings package */
128
+  pre.src-ada:before { content: 'Ada'; }
129
+  pre.src-asm:before { content: 'Assembler'; }
130
+  pre.src-caml:before { content: 'Caml'; }
131
+  pre.src-delphi:before { content: 'Delphi'; }
132
+  pre.src-html:before { content: 'HTML'; }
133
+  pre.src-idl:before { content: 'IDL'; }
134
+  pre.src-mercury:before { content: 'Mercury'; }
135
+  pre.src-metapost:before { content: 'MetaPost'; }
136
+  pre.src-modula-2:before { content: 'Modula-2'; }
137
+  pre.src-pascal:before { content: 'Pascal'; }
138
+  pre.src-ps:before { content: 'PostScript'; }
139
+  pre.src-prolog:before { content: 'Prolog'; }
140
+  pre.src-simula:before { content: 'Simula'; }
141
+  pre.src-tcl:before { content: 'tcl'; }
142
+  pre.src-tex:before { content: 'TeX'; }
143
+  pre.src-plain-tex:before { content: 'Plain TeX'; }
144
+  pre.src-verilog:before { content: 'Verilog'; }
145
+  pre.src-vhdl:before { content: 'VHDL'; }
146
+  pre.src-xml:before { content: 'XML'; }
147
+  pre.src-nxml:before { content: 'XML'; }
148
+  /* add a generic configuration mode; LaTeX export needs an additional
149
+     (add-to-list 'org-latex-listings-langs '(conf " ")) in .emacs */
150
+  pre.src-conf:before { content: 'Configuration File'; }
59 151
 
60 152
   table { border-collapse:collapse; }
61 153
   caption.t-above { caption-side: top; }
62 154
   caption.t-bottom { caption-side: bottom; }
63 155
   td, th { vertical-align:top;  }
64
-  th.right  { text-align: center;  }
65
-  th.left   { text-align: center;   }
66
-  th.center { text-align: center; }
67
-  td.right  { text-align: right;  }
68
-  td.left   { text-align: left;   }
69
-  td.center { text-align: center; }
156
+  th.org-right  { text-align: center;  }
157
+  th.org-left   { text-align: center;   }
158
+  th.org-center { text-align: center; }
159
+  td.org-right  { text-align: right;  }
160
+  td.org-left   { text-align: left;   }
161
+  td.org-center { text-align: center; }
70 162
   dt { font-weight: bold; }
71
-  .footpara:nth-child(2) { display: inline; }
72
-  .footpara { display: block; }
163
+  .footpara { display: inline; }
73 164
   .footdef  { margin-bottom: 1em; }
74 165
   .figure { padding: 1em; }
75 166
   .figure p { text-align: center; }
@@ -89,6 +180,7 @@
89 180
     { font-size: 10px; font-weight: bold; white-space: nowrap; }
90 181
   .org-info-js_search-highlight
91 182
     { background-color: #ffff00; color: #000000; font-weight: bold; }
183
+  .org-svg { width: 90%; }
92 184
   /*]]>*/-->
93 185
 </style>
94 186
 <link rel="stylesheet" type="text/css" href="freedombone.css" />
@@ -97,7 +189,7 @@
97 189
 @licstart  The following is the entire license notice for the
98 190
 JavaScript code in this tag.
99 191
 
100
-Copyright (C) 2012-2013 Free Software Foundation, Inc.
192
+Copyright (C) 2012-2017 Free Software Foundation, Inc.
101 193
 
102 194
 The JavaScript code in this tag is free software: you can
103 195
 redistribute it and/or modify it under the terms of the GNU
@@ -144,8 +236,7 @@ for the JavaScript code in this tag.
144 236
 <a name="top" id="top"></a>
145 237
 </div>
146 238
 <div id="content">
147
-<h1 class="title"></h1>
148
-<div class="center">
239
+<div class="org-center">
149 240
 <p>
150 241
 <img src="images/logo.png" alt="logo.png" />
151 242
 <img src="images/bbb3.png" alt="bbb3.png" />
@@ -167,44 +258,30 @@ So you want to run your own internet services? Email, chat, VoIP, web sites, fil
167 258
 </p>
168 259
 
169 260
 <p>
170
-<a href="./homeserver.html">Here's how</a>.
261
+A list of other supported ARM boards <a href="./boards.html">can be found here</a>, or you can install onto an old laptop or netbook. Some installation instructions for different use cases are:
171 262
 </p>
172 263
 
173
-<p>
174
-And here's how <a href="./beaglebone.html">on a Beaglebone Black</a>. A list of other supported ARM boards <a href="./boards.html">can be found here</a>.
175
-</p>
176
-
177
-<p>
178
-Or you can install <a href="./debianinstall.html">onto an existing Debian system</a>.
179
-</p>
180
-
181
-<p>
182
-If you have a single board ARM computer which isn't one of the officially supported ones, such as Raspberry Pi, then you may still be able to install <a href="./armbian.html">Freedombone with Armbian</a>.
183
-</p>
184
-
185
-<p>
186
-Want to make a community mesh network which can either be fully autonomous or connected to the internet? The <a href="./mesh.html">Freedombone Mesh</a> is a wireless solution for networked communication that can be rapidly deployed in temporary, emergency or post-disaster situations where internet access is unavailable or compromised, or used as an infrastructural community service similar to <a href="https://en.wikipedia.org/wiki/Freifunk">Freifunk</a>.
187
-</p>
264
+<ul class="org-ul">
265
+<li><a href="./homeserver.html">Typical installation</a></li>
266
+<li>Installing <a href="./beaglebone.html">on a Beaglebone Black</a></li>
267
+<li>Installing on an <a href="./debianinstall.html">existing Debian system</a></li>
268
+<li>Installing <a href="./armbian.html">on Armbian</a>, for unsupported ARM boards such as Raspberry Pi</li>
269
+<li>Creating a dedicated <a href="./socialinstance.html">fediverse instance</a> for a single user or to host a community</li>
270
+<li>Deploying a <a href="./mesh.html">mesh network</a> which can operate with or without the internet</li>
271
+</ul>
188 272
 
189 273
 <p>
190 274
 After installation it's possible that you might want some advice on how to run your system and set up apps to work nicely with it.
191 275
 </p>
192 276
 
193 277
 <ul class="org-ul">
194
-<li><a href="./domains.html">How to get a domain name</a>
195
-</li>
196
-<li><a href="./security.html">Improving security</a>
197
-</li>
198
-<li><a href="./users.html">Adding or removing users</a>
199
-</li>
200
-<li><a href="./apps.html">Apps available on the system</a>
201
-</li>
202
-<li><a href="./faq.html">Frequently Asked Questions</a>
203
-</li>
204
-<li><a href="./mobile.html">Advice on setting up a mobile phone</a>
205
-</li>
206
-<li><a href="./support.html">I like this project. How can I help to support it?</a>
207
-</li>
278
+<li><a href="./domains.html">How to get a domain name</a></li>
279
+<li><a href="./security.html">Improving security</a></li>
280
+<li><a href="./users.html">Adding or removing users</a></li>
281
+<li><a href="./apps.html">Apps available on the system</a></li>
282
+<li><a href="./faq.html">Frequently Asked Questions</a></li>
283
+<li><a href="./mobile.html">Advice on setting up a mobile phone</a></li>
284
+<li><a href="./support.html">I like this project. How can I help to support it?</a></li>
208 285
 </ul>
209 286
 
210 287
 
@@ -216,7 +293,7 @@ If you find bugs, or want to add a new app to this system see the <a href="./dev
216 293
 Ready made disk images which can be copied onto USB or microSD drives are <a href="./downloads/current">available here</a>.
217 294
 </p>
218 295
 
219
-<div class="center">
296
+<div class="org-center">
220 297
 <p>
221 298
 This site can also be accessed via a Tor browser at <a href="http://yjxlc3imv7obva4grjae6u3qw527koaytrgjgdp364hmthrst3jodiid.onion">http://yjxlc3imv7obva4grjae6u3qw527koaytrgjgdp364hmthrst3jodiid.onion</a>. This documentation is under the <a href="https://www.gnu.org/licenses/fdl-1.3.txt">GNU Free Documentation License version 1.3</a>
222 299
 </p>

+ 115
- 10
website/EN/socialinstance.html 查看文件

@@ -3,7 +3,7 @@
3 3
 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
4 4
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
5 5
 <head>
6
-<!-- 2018-03-12 Mon 14:01 -->
6
+<!-- 2018-03-13 Tue 12:38 -->
7 7
 <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
8 8
 <meta name="viewport" content="width=device-width, initial-scale=1" />
9 9
 <title>&lrm;</title>
@@ -264,15 +264,120 @@ A social instance image allows you to easily set up a fediverse server, which fe
264 264
 The installation process is the same as usual, with the only difference being that on initial setup it will go straight to the domain setup details for your instance. In summary:
265 265
 </p>
266 266
 
267
-<ul class="org-ul">
268
-<li>Copy the image to the USB drive, with the <b>dd</b> command or other image copying software</li>
269
-<li>Connect the laptop to your internet router with the ethernet cable</li>
270
-<li>Boot the laptop from the USB drive</li>
271
-<li>Forward ports 80 and 443 from your internet router to the laptop</li>
272
-<li>From another machine ssh into the laptop with <b>ssh fbone@freedombone.local -p 2222</b></li>
273
-<li>Follow the setup procedure and enter your domain name and dynamic DNS details</li>
274
-<li>When installation is complete navigate to your domain and register a new user</li>
275
-</ul>
267
+<div id="outline-container-orgbcf5aad" class="outline-2">
268
+<h2 id="orgbcf5aad">Copy the image to the USB drive</h2>
269
+<div class="outline-text-2" id="text-orgbcf5aad">
270
+<p>
271
+Substitute <b>sdX</b> with the device name for your USB drive.
272
+</p>
273
+
274
+<div class="org-src-container">
275
+<pre class="src src-bash">sudo apt-get install xz-utils wget
276
+wget https://freedombone.net/downloads/current/freedombone-pleroma-amd64.img.xz
277
+wget https://freedombone.net/downloads/current/freedombone-pleroma-amd64.img.xz.sig
278
+gpg --verify freedombone-pleroma-amd64.img.xz.sig
279
+unxz freedombone-pleroma-amd64.img.xz
280
+sudo dd <span class="org-variable-name">if</span>=/dev/zero <span class="org-variable-name">of</span>=/dev/sdX <span class="org-variable-name">bs</span>=1M <span class="org-variable-name">count</span>=8
281
+sudo dd <span class="org-variable-name">bs</span>=1M <span class="org-variable-name">if</span>=freedombone-pleroma-amd64.img <span class="org-variable-name">of</span>=/dev/sdX <span class="org-variable-name">conv</span>=fdatasync
282
+</pre>
283
+</div>
284
+
285
+<p>
286
+Also note that if the laptop has a removable SSD drive it's possible to copy the image directly to that if you have enough equipment.
287
+</p>
288
+</div>
289
+</div>
290
+
291
+<div id="outline-container-orgfdbde2b" class="outline-2">
292
+<h2 id="orgfdbde2b">Connect the laptop to your internet router</h2>
293
+<div class="outline-text-2" id="text-orgfdbde2b">
294
+<p>
295
+With the ethernet cable.
296
+</p>
297
+
298
+<div class="org-center">
299
+
300
+<div class="figure">
301
+<p><img src="images/laptop_router.jpg" alt="laptop_router.jpg" />
302
+</p>
303
+</div>
304
+</div>
305
+</div>
306
+</div>
307
+
308
+<div id="outline-container-orgae9997f" class="outline-2">
309
+<h2 id="orgae9997f">Boot the laptop from the USB drive</h2>
310
+<div class="outline-text-2" id="text-orgae9997f">
311
+<p>
312
+You may need to alter the BIOS settings to get this to work reliably.
313
+</p>
314
+
315
+<div class="org-center">
316
+
317
+<div class="figure">
318
+<p><img src="images/bios_boot_usb.jpg" alt="bios_boot_usb.jpg" />
319
+</p>
320
+</div>
321
+</div>
322
+</div>
323
+</div>
324
+
325
+<div id="outline-container-orgf3f4c4a" class="outline-2">
326
+<h2 id="orgf3f4c4a">Forward ports 80 (HTTP) and 443 (HTTPS) from your internet router to the laptop</h2>
327
+<div class="outline-text-2" id="text-orgf3f4c4a">
328
+<p>
329
+Log into your internet router using a non-Tor browser (usually it's on an address like 192.168.1.1 or 192.168.1.254). Often port forwarding settings are together with firewall settings.
330
+</p>
331
+
332
+<div class="org-center">
333
+
334
+<div class="figure">
335
+<p><img src="images/port_forwarding.png" alt="port_forwarding.png" />
336
+</p>
337
+</div>
338
+</div>
339
+</div>
340
+</div>
341
+
342
+<div id="outline-container-org4972cde" class="outline-2">
343
+<h2 id="org4972cde">From another machine ssh into the laptop</h2>
344
+<div class="outline-text-2" id="text-org4972cde">
345
+<div class="org-src-container">
346
+<pre class="src src-bash">ssh fbone@freedombone.local -p 2222
347
+</pre>
348
+</div>
349
+
350
+<p>
351
+Or alternatively you can log in directly on the laptop. The initial username is <b>fbone</b> and the password is <b>freedombone</b>. You should make sure you write down or copy the new password when it is shown.
352
+</p>
353
+</div>
354
+</div>
355
+
356
+<div id="outline-container-org955b5d7" class="outline-2">
357
+<h2 id="org955b5d7">Follow the setup procedure</h2>
358
+<div class="outline-text-2" id="text-org955b5d7">
359
+<p>
360
+Enter your user details, domain name and dynamic DNS settings.
361
+</p>
362
+</div>
363
+</div>
364
+
365
+<div id="outline-container-org584e95d" class="outline-2">
366
+<h2 id="org584e95d">When installation is complete</h2>
367
+<div class="outline-text-2" id="text-org584e95d">
368
+<p>
369
+Navigate to your domain and register a new user.
370
+</p>
371
+
372
+<div class="org-center">
373
+
374
+<div class="figure">
375
+<p><img src="images/pleroma_register.jpg" alt="pleroma_register.jpg" />
376
+</p>
377
+</div>
378
+</div>
379
+</div>
380
+</div>
276 381
 </div>
277 382
 <div id="postamble" class="status">
278 383