Separate rss documentation

This commit is contained in:
Bob Mottram 2016-11-12 23:06:26 +00:00
parent bd09bbcecd
commit f10683338a
6 changed files with 570 additions and 255 deletions

76
doc/EN/app_rss.org Normal file
View File

@ -0,0 +1,76 @@
#+TITLE:
#+AUTHOR: Bob Mottram
#+EMAIL: bob@freedombone.net
#+KEYWORDS: Freedombone, RSS
#+DESCRIPTION: How to use the RSS reader
#+OPTIONS: ^:nil toc:nil
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="freedombone.css" />
#+BEGIN_CENTER
[[file:images/logo.png]]
#+END_CENTER
#+BEGIN_EXPORT html
<center>
<h1>RSS Reader</h1>
</center>
#+END_EXPORT
The way that RSS reading is set up on Freedombone gives you strong reading privacy. Not only is there onion routing between you and the server but also between the server and the source of the RSS feed. The only down side is that many RSS feeds are still http only, and so could be vulnerable to injection attacks, but it's expected that more of this will go to https in the foreseeable future due to a combination of growing recognition of security issues and systems like Let's Encrypt which make obtaining certificates much easier.
#+BEGIN_CENTER
[[file:images/rss_reader_mobile.jpg]]
#+END_CENTER
* Finding the onion address
See the control panel for the RSS reader onion address.
#+BEGIN_SRC bash
ssh username@domainname -p 2222
#+END_SRC
Select *Administrator controls* then select the *About* screen.
The RSS reader is accessible only via an onion address. This provides a reasonable degree of reading privacy, making it difficult for passive adversaries such as governments, corporations or criminals to create lists of sites which you are subscribed to.
To set up the system open http://rss_reader_onion_address and log in with username *admin* and the password obtained either at the beginning of the install or from the README file in your home directory. You can then select the *Actions* menu and begin adding your feeds.
* On mobile
To access the RSS reader from a mobile device you can install a Tor compatible browser such as OrFox, then use the mobile onion address shown on the *About* screen of the *Administrator controls*. Remember to add the site to the NoScript whitelist, and you may also need to turn HTTPS Everywhere off.
#+BEGIN_QUOTE
A note for the paranoid is that on mobile devices you get redirected to a different onion address which is specially set up for the mobile interface, so don't be alarmed that it looks like your connection is being hijacked.
#+END_QUOTE
* With Emacs
If you are an Emacs user then you can also read your RSS feeds via the [[https://github.com/dk87/avandu][Avandu]] mode.
Add the following to your configuration, changing the address and password as appropriate.
#+begin_src emacs-lisp :tangle no
(setq avandu-tt-rss-api-url "http://rss_reader_onion_address/api/"
avandu-user "admin"
avandu-password "mypassword")
#+end_src
If you don't already have Emacs set up to route through Tor then also add the following:
#+begin_src emacs-lisp :tangle no
(setq socks-noproxy '("localhost"))
(require 'socks)
(require 'tls)
(setq socks-server (list "Tor socks" "localhost" 9050 5))
#+end_src
And ensure that the Tor daemon is installed. On a debian based system:
#+begin_src bash :tangle no
sudo apt-get install tor
#+end_src
or on Arch/Parabola:
#+begin_src bash :tangle no
sudo pacman -S tor
sudo systemctl enable tor
sudo systemctl start tor
#+end_src

View File

@ -79,6 +79,7 @@ Calendar system compatible with CalDAV and CardDAV. Manage your calendar events
* tt-rss * tt-rss
Private RSS reader. Pulls in RSS/Atom feeds via Tor and is only accessible via an onion address. Have "/the right to read/" without the Surveillance State knowing what you're reading. Also available with a user interface suitable for viewing on mobile devices via a browser such as OrFox. Private RSS reader. Pulls in RSS/Atom feeds via Tor and is only accessible via an onion address. Have "/the right to read/" without the Surveillance State knowing what you're reading. Also available with a user interface suitable for viewing on mobile devices via a browser such as OrFox.
[[./app_rss.html][How to use it]]
* Syncthing * Syncthing
Possibly the best way to synchronise files across all of your devices. Once it has been set up it "just works" with no user intervention needed. Possibly the best way to synchronise files across all of your devices. Once it has been set up it "just works" with no user intervention needed.

View File

@ -29,7 +29,7 @@
| [[./app_xmpp.html][XMPP/Jabber]] | | [[./app_xmpp.html][XMPP/Jabber]] |
| [[./app_tox.html][Tox]] | | [[./app_tox.html][Tox]] |
| [[./app_mumble.html][Mumble]] | | [[./app_mumble.html][Mumble]] |
| [[RSS Reader]] | | [[./app_rss.html][RSS Reader]] |
| [[Git Projects]] | | [[Git Projects]] |
| [[Adding or removing users]] | | [[Adding or removing users]] |
| [[Blocking Ads]] | | [[Blocking Ads]] |
@ -100,55 +100,6 @@ ssh username@address.onion -p 2222
#+END_SRC #+END_SRC
Subsequently even if dynamic DNS isn't working you may still be able to administer your system. Using the onion address also gives you some degree of protection against corporate or government metadata analysis, since it becomes more difficult to passively detect which systems are communicating. Subsequently even if dynamic DNS isn't working you may still be able to administer your system. Using the onion address also gives you some degree of protection against corporate or government metadata analysis, since it becomes more difficult to passively detect which systems are communicating.
* RSS Reader
The way that RSS reading is set up on Freedombone gives you strong reading privacy. Not only is there onion routing between you and the server but also between the server and the source of the RSS feed. The only down side is that many RSS feeds are still http only, and so could be vulnerable to injection attacks, but it's expected that more of this will go to https in the foreseeable future due to a combination of growing recognition of security issues and systems like Let's Encrypt which make obtaining certificates much easier.
[[file:images/rss_reader_mobile.jpg]]
** Finding the onion address
See the control panel for the RSS reader onion address.
#+BEGIN_SRC bash
ssh username@domainname -p 2222
#+END_SRC
Select /Administrator controls/ then select the *About* screen.
The RSS reader is accessible only via an onion address. This provides a reasonable degree of reading privacy, making it difficult for passive adversaries such as governments, corporations or criminals to create lists of sites which you are subscribed to.
To set up the system open http://rss_reader_onion_address and log in with username *admin* and the password obtained either at the beginning of the install or from the README file in your home directory. You can then select the *Actions* menu and begin adding your feeds.
** On mobile
To access the RSS reader from a mobile device you can install a Tor compatible browser such as OrFox. It will try to automatically change to the mobile version of the user interface. Remember to add the site to the NoScript whitelist, and you may also need to turn HTTPS Everywhere off.
#+BEGIN_QUOTE
A note for the paranoid is that on mobile devices you get redirected to a different onion address which is specially set up for the mobile interface, so don't be alarmed that it looks like your connection is being hijacked.
#+END_QUOTE
** With Emacs
If you are an Emacs user then you can also read your RSS feeds via the [[https://github.com/dk87/avandu][Avandu]] mode.
Add the following to your configuration, changing the address and password as appropriate.
#+begin_src emacs-lisp :tangle no
(setq avandu-tt-rss-api-url "http://rss_reader_onion_address/api/"
avandu-user "admin"
avandu-password "mypassword")
#+end_src
If you don't already have Emacs set up to route through Tor then also add the following:
#+begin_src emacs-lisp :tangle no
(setq socks-noproxy '("localhost"))
(require 'socks)
(require 'tls)
(setq socks-server (list "Tor socks" "localhost" 9050 5))
#+end_src
And ensure that the Tor daemon is installed:
#+begin_src bash :tangle no
sudo apt-get install tor
#+end_src
* Git Projects * Git Projects
Github is ok, but it's proprietary and funded by venture capital. If you been around on the internet for long enough then you know how this story eventually works itself out - i.e. badly for the users. It's really only a question of time. If you're a software developer or do things which involve the Git version control system then it's a good idea to become accustomed to hosting your own repositories, before the inevitable Github shitstorm happens. Github is ok, but it's proprietary and funded by venture capital. If you been around on the internet for long enough then you know how this story eventually works itself out - i.e. badly for the users. It's really only a question of time. If you're a software developer or do things which involve the Git version control system then it's a good idea to become accustomed to hosting your own repositories, before the inevitable Github shitstorm happens.

379
website/EN/app_rss.html Normal file
View File

@ -0,0 +1,379 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2016-11-12 Sat 23:04 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title></title>
<meta name="generator" content="Org mode" />
<meta name="author" content="Bob Mottram" />
<meta name="description" content="How to use the RSS reader"
/>
<meta name="keywords" content="Freedombone, RSS" />
<style type="text/css">
<!--/*--><![CDATA[/*><!--*/
.title { text-align: center;
margin-bottom: .2em; }
.subtitle { text-align: center;
font-size: medium;
font-weight: bold;
margin-top:0; }
.todo { font-family: monospace; color: red; }
.done { font-family: monospace; color: green; }
.priority { font-family: monospace; color: orange; }
.tag { background-color: #eee; font-family: monospace;
padding: 2px; font-size: 80%; font-weight: normal; }
.timestamp { color: #bebebe; }
.timestamp-kwd { color: #5f9ea0; }
.org-right { margin-left: auto; margin-right: 0px; text-align: right; }
.org-left { margin-left: 0px; margin-right: auto; text-align: left; }
.org-center { margin-left: auto; margin-right: auto; text-align: center; }
.underline { text-decoration: underline; }
#postamble p, #preamble p { font-size: 90%; margin: .2em; }
p.verse { margin-left: 3%; }
pre {
border: 1px solid #ccc;
box-shadow: 3px 3px 3px #eee;
padding: 8pt;
font-family: monospace;
overflow: auto;
margin: 1.2em;
}
pre.src {
position: relative;
overflow: visible;
padding-top: 1.2em;
}
pre.src:before {
display: none;
position: absolute;
background-color: white;
top: -10px;
right: 10px;
padding: 3px;
border: 1px solid black;
}
pre.src:hover:before { display: inline;}
/* Languages per Org manual */
pre.src-asymptote:before { content: 'Asymptote'; }
pre.src-awk:before { content: 'Awk'; }
pre.src-C:before { content: 'C'; }
/* pre.src-C++ doesn't work in CSS */
pre.src-clojure:before { content: 'Clojure'; }
pre.src-css:before { content: 'CSS'; }
pre.src-D:before { content: 'D'; }
pre.src-ditaa:before { content: 'ditaa'; }
pre.src-dot:before { content: 'Graphviz'; }
pre.src-calc:before { content: 'Emacs Calc'; }
pre.src-emacs-lisp:before { content: 'Emacs Lisp'; }
pre.src-fortran:before { content: 'Fortran'; }
pre.src-gnuplot:before { content: 'gnuplot'; }
pre.src-haskell:before { content: 'Haskell'; }
pre.src-java:before { content: 'Java'; }
pre.src-js:before { content: 'Javascript'; }
pre.src-latex:before { content: 'LaTeX'; }
pre.src-ledger:before { content: 'Ledger'; }
pre.src-lisp:before { content: 'Lisp'; }
pre.src-lilypond:before { content: 'Lilypond'; }
pre.src-lua:before { content: 'Lua'; }
pre.src-matlab:before { content: 'MATLAB'; }
pre.src-mscgen:before { content: 'Mscgen'; }
pre.src-ocaml:before { content: 'Objective Caml'; }
pre.src-octave:before { content: 'Octave'; }
pre.src-org:before { content: 'Org mode'; }
pre.src-oz:before { content: 'OZ'; }
pre.src-plantuml:before { content: 'Plantuml'; }
pre.src-processing:before { content: 'Processing.js'; }
pre.src-python:before { content: 'Python'; }
pre.src-R:before { content: 'R'; }
pre.src-ruby:before { content: 'Ruby'; }
pre.src-sass:before { content: 'Sass'; }
pre.src-scheme:before { content: 'Scheme'; }
pre.src-screen:before { content: 'Gnu Screen'; }
pre.src-sed:before { content: 'Sed'; }
pre.src-sh:before { content: 'shell'; }
pre.src-sql:before { content: 'SQL'; }
pre.src-sqlite:before { content: 'SQLite'; }
/* additional languages in org.el's org-babel-load-languages alist */
pre.src-forth:before { content: 'Forth'; }
pre.src-io:before { content: 'IO'; }
pre.src-J:before { content: 'J'; }
pre.src-makefile:before { content: 'Makefile'; }
pre.src-maxima:before { content: 'Maxima'; }
pre.src-perl:before { content: 'Perl'; }
pre.src-picolisp:before { content: 'Pico Lisp'; }
pre.src-scala:before { content: 'Scala'; }
pre.src-shell:before { content: 'Shell Script'; }
pre.src-ebnf2ps:before { content: 'ebfn2ps'; }
/* additional language identifiers per "defun org-babel-execute"
in ob-*.el */
pre.src-cpp:before { content: 'C++'; }
pre.src-abc:before { content: 'ABC'; }
pre.src-coq:before { content: 'Coq'; }
pre.src-groovy:before { content: 'Groovy'; }
/* additional language identifiers from org-babel-shell-names in
ob-shell.el: ob-shell is the only babel language using a lambda to put
the execution function name together. */
pre.src-bash:before { content: 'bash'; }
pre.src-csh:before { content: 'csh'; }
pre.src-ash:before { content: 'ash'; }
pre.src-dash:before { content: 'dash'; }
pre.src-ksh:before { content: 'ksh'; }
pre.src-mksh:before { content: 'mksh'; }
pre.src-posh:before { content: 'posh'; }
/* Additional Emacs modes also supported by the LaTeX listings package */
pre.src-ada:before { content: 'Ada'; }
pre.src-asm:before { content: 'Assembler'; }
pre.src-caml:before { content: 'Caml'; }
pre.src-delphi:before { content: 'Delphi'; }
pre.src-html:before { content: 'HTML'; }
pre.src-idl:before { content: 'IDL'; }
pre.src-mercury:before { content: 'Mercury'; }
pre.src-metapost:before { content: 'MetaPost'; }
pre.src-modula-2:before { content: 'Modula-2'; }
pre.src-pascal:before { content: 'Pascal'; }
pre.src-ps:before { content: 'PostScript'; }
pre.src-prolog:before { content: 'Prolog'; }
pre.src-simula:before { content: 'Simula'; }
pre.src-tcl:before { content: 'tcl'; }
pre.src-tex:before { content: 'TeX'; }
pre.src-plain-tex:before { content: 'Plain TeX'; }
pre.src-verilog:before { content: 'Verilog'; }
pre.src-vhdl:before { content: 'VHDL'; }
pre.src-xml:before { content: 'XML'; }
pre.src-nxml:before { content: 'XML'; }
/* add a generic configuration mode; LaTeX export needs an additional
(add-to-list 'org-latex-listings-langs '(conf " ")) in .emacs */
pre.src-conf:before { content: 'Configuration File'; }
table { border-collapse:collapse; }
caption.t-above { caption-side: top; }
caption.t-bottom { caption-side: bottom; }
td, th { vertical-align:top; }
th.org-right { text-align: center; }
th.org-left { text-align: center; }
th.org-center { text-align: center; }
td.org-right { text-align: right; }
td.org-left { text-align: left; }
td.org-center { text-align: center; }
dt { font-weight: bold; }
.footpara { display: inline; }
.footdef { margin-bottom: 1em; }
.figure { padding: 1em; }
.figure p { text-align: center; }
.inlinetask {
padding: 10px;
border: 2px solid gray;
margin: 10px;
background: #ffffcc;
}
#org-div-home-and-up
{ text-align: right; font-size: 70%; white-space: nowrap; }
textarea { overflow-x: auto; }
.linenr { font-size: smaller }
.code-highlighted { background-color: #ffff00; }
.org-info-js_info-navigation { border-style: none; }
#org-info-js_console-label
{ font-size: 10px; font-weight: bold; white-space: nowrap; }
.org-info-js_search-highlight
{ background-color: #ffff00; color: #000000; font-weight: bold; }
.org-svg { width: 90%; }
/*]]>*/-->
</style>
<link rel="stylesheet" type="text/css" href="freedombone.css" />
<script type="text/javascript">
/*
@licstart The following is the entire license notice for the
JavaScript code in this tag.
Copyright (C) 2012-2013 Free Software Foundation, Inc.
The JavaScript code in this tag is free software: you can
redistribute it and/or modify it under the terms of the GNU
General Public License (GNU GPL) as published by the Free Software
Foundation, either version 3 of the License, or (at your option)
any later version. The code is distributed WITHOUT ANY WARRANTY;
without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the GNU GPL for more details.
As additional permission under GNU GPL version 3 section 7, you
may distribute non-source (e.g., minimized or compacted) forms of
that code without the copy of the GNU GPL normally required by
section 4, provided you include this license notice and a URL
through which recipients can access the Corresponding Source.
@licend The above is the entire license notice
for the JavaScript code in this tag.
*/
<!--/*--><![CDATA[/*><!--*/
function CodeHighlightOn(elem, id)
{
var target = document.getElementById(id);
if(null != target) {
elem.cacheClassElem = elem.className;
elem.cacheClassTarget = target.className;
target.className = "code-highlighted";
elem.className = "code-highlighted";
}
}
function CodeHighlightOff(elem, id)
{
var target = document.getElementById(id);
if(elem.cacheClassElem)
elem.className = elem.cacheClassElem;
if(elem.cacheClassTarget)
target.className = elem.cacheClassTarget;
}
/*]]>*///-->
</script>
</head>
<body>
<div id="preamble" class="status">
<a name="top" id="top"></a>
</div>
<div id="content">
<div class="org-center">
<div class="figure">
<p><img src="images/logo.png" alt="logo.png" />
</p>
</div>
</div>
<center>
<h1>RSS Reader</h1>
</center>
<p>
The way that RSS reading is set up on Freedombone gives you strong reading privacy. Not only is there onion routing between you and the server but also between the server and the source of the RSS feed. The only down side is that many RSS feeds are still http only, and so could be vulnerable to injection attacks, but it's expected that more of this will go to https in the foreseeable future due to a combination of growing recognition of security issues and systems like Let's Encrypt which make obtaining certificates much easier.
</p>
<div class="org-center">
<div class="figure">
<p><img src="images/rss_reader_mobile.jpg" alt="rss_reader_mobile.jpg" />
</p>
</div>
</div>
<div id="outline-container-orgb5420ab" class="outline-2">
<h2 id="orgb5420ab">Finding the onion address</h2>
<div class="outline-text-2" id="text-orgb5420ab">
<p>
See the control panel for the RSS reader onion address.
</p>
<div class="org-src-container">
<pre class="src src-bash">ssh username@domainname -p 2222
</pre>
</div>
<p>
Select <b>Administrator controls</b> then select the <b>About</b> screen.
</p>
<p>
The RSS reader is accessible only via an onion address. This provides a reasonable degree of reading privacy, making it difficult for passive adversaries such as governments, corporations or criminals to create lists of sites which you are subscribed to.
</p>
<p>
To set up the system open <a href="http://rss_reader_onion_address">http://rss_reader_onion_address</a> and log in with username <b>admin</b> and the password obtained either at the beginning of the install or from the README file in your home directory. You can then select the <b>Actions</b> menu and begin adding your feeds.
</p>
</div>
</div>
<div id="outline-container-org9ed01db" class="outline-2">
<h2 id="org9ed01db">On mobile</h2>
<div class="outline-text-2" id="text-org9ed01db">
<p>
To access the RSS reader from a mobile device you can install a Tor compatible browser such as OrFox, then use the mobile onion address shown on the <b>About</b> screen of the <b>Administrator controls</b>. Remember to add the site to the NoScript whitelist, and you may also need to turn HTTPS Everywhere off.
</p>
<blockquote>
<p>
A note for the paranoid is that on mobile devices you get redirected to a different onion address which is specially set up for the mobile interface, so don't be alarmed that it looks like your connection is being hijacked.
</p>
</blockquote>
</div>
</div>
<div id="outline-container-orgaafcbb6" class="outline-2">
<h2 id="orgaafcbb6">With Emacs</h2>
<div class="outline-text-2" id="text-orgaafcbb6">
<p>
If you are an Emacs user then you can also read your RSS feeds via the <a href="https://github.com/dk87/avandu">Avandu</a> mode.
</p>
<p>
Add the following to your configuration, changing the address and password as appropriate.
</p>
<div class="org-src-container">
<pre class="src src-emacs-lisp">(<span class="org-keyword">setq</span> avandu-tt-rss-api-url <span class="org-string">"http://rss_reader_onion_address/api/"</span>
avandu-user <span class="org-string">"admin"</span>
avandu-password <span class="org-string">"mypassword"</span>)
</pre>
</div>
<p>
If you don't already have Emacs set up to route through Tor then also add the following:
</p>
<div class="org-src-container">
<pre class="src src-emacs-lisp">(<span class="org-keyword">setq</span> socks-noproxy '(<span class="org-string">"localhost"</span>))
(<span class="org-keyword">require</span> '<span class="org-constant">socks</span>)
(<span class="org-keyword">require</span> '<span class="org-constant">tls</span>)
(<span class="org-keyword">setq</span> socks-server (list <span class="org-string">"Tor socks"</span> <span class="org-string">"localhost"</span> 9050 5))
</pre>
</div>
<p>
And ensure that the Tor daemon is installed. On a debian based system:
</p>
<div class="org-src-container">
<pre class="src src-bash">sudo apt-get install tor
</pre>
</div>
<p>
or on Arch/Parabola:
</p>
<div class="org-src-container">
<pre class="src src-bash">sudo pacman -S tor
sudo systemctl enable tor
sudo systemctl start tor
</pre>
</div>
</div>
</div>
</div>
<div id="postamble" class="status">
<style type="text/css">
.back-to-top {
position: fixed;
bottom: 2em;
right: 0px;
text-decoration: none;
color: #000000;
background-color: rgba(235, 235, 235, 0.80);
font-size: 12px;
padding: 1em;
display: none;
}
.back-to-top:hover {
background-color: rgba(135, 135, 135, 0.50);
}
</style>
<div class="back-to-top">
<a href="#top">Back to top</a> | <a href="mailto:bob@freedombone.net">E-mail me</a>
</div>
</div>
</body>
</html>

View File

@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"> <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head> <head>
<!-- 2016-11-12 Sat 22:53 --> <!-- 2016-11-12 Sat 23:05 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" /> <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" /> <meta name="viewport" content="width=device-width, initial-scale=1" />
<title></title> <title></title>
@ -257,9 +257,9 @@ The base install of the system just contains an email server and Mutt client, bu
</div> </div>
</div> </div>
<div id="outline-container-org33a9d04" class="outline-2"> <div id="outline-container-org62db2d9" class="outline-2">
<h2 id="org33a9d04">DLNA</h2> <h2 id="org62db2d9">DLNA</h2>
<div class="outline-text-2" id="text-org33a9d04"> <div class="outline-text-2" id="text-org62db2d9">
<p> <p>
Enables you to use the system as a music server which any DLNA compatible devices can connect to within your home network. Enables you to use the system as a music server which any DLNA compatible devices can connect to within your home network.
</p> </p>
@ -269,45 +269,45 @@ Enables you to use the system as a music server which any DLNA compatible device
</p> </p>
</div> </div>
</div> </div>
<div id="outline-container-orgc3cdd75" class="outline-2"> <div id="outline-container-org36e6ee8" class="outline-2">
<h2 id="orgc3cdd75">Dokuwiki</h2> <h2 id="org36e6ee8">Dokuwiki</h2>
<div class="outline-text-2" id="text-orgc3cdd75"> <div class="outline-text-2" id="text-org36e6ee8">
<p> <p>
A databaseless wiki system. A databaseless wiki system.
</p> </p>
</div> </div>
</div> </div>
<div id="outline-container-org15182ac" class="outline-2"> <div id="outline-container-orgc8fb8d3" class="outline-2">
<h2 id="org15182ac">Emacs</h2> <h2 id="orgc8fb8d3">Emacs</h2>
<div class="outline-text-2" id="text-org15182ac"> <div class="outline-text-2" id="text-orgc8fb8d3">
<p> <p>
If you use the Mutt client to read your email then this will set it up to use emacs for composing new mail. If you use the Mutt client to read your email then this will set it up to use emacs for composing new mail.
</p> </p>
</div> </div>
</div> </div>
<div id="outline-container-orge86fa0b" class="outline-2"> <div id="outline-container-org804a2db" class="outline-2">
<h2 id="orge86fa0b">Etherpad</h2> <h2 id="org804a2db">Etherpad</h2>
<div class="outline-text-2" id="text-orge86fa0b"> <div class="outline-text-2" id="text-org804a2db">
<p> <p>
Collaborate on creating documents in real time. Maybe you're planning a holiday with other family members or creating documentation for a Free Software project along with other volunteers. Etherpad is hard to beat for simplicity and speed. Only users of the system will be able to access it. Collaborate on creating documents in real time. Maybe you're planning a holiday with other family members or creating documentation for a Free Software project along with other volunteers. Etherpad is hard to beat for simplicity and speed. Only users of the system will be able to access it.
</p> </p>
</div> </div>
</div> </div>
<div id="outline-container-orgbadf55a" class="outline-2"> <div id="outline-container-orgda10680" class="outline-2">
<h2 id="orgbadf55a">Ghost</h2> <h2 id="orgda10680">Ghost</h2>
<div class="outline-text-2" id="text-orgbadf55a"> <div class="outline-text-2" id="text-orgda10680">
<p> <p>
Modern looking blogging system. Modern looking blogging system.
</p> </p>
</div> </div>
</div> </div>
<div id="outline-container-orgb53ae00" class="outline-2"> <div id="outline-container-org8fba16b" class="outline-2">
<h2 id="orgb53ae00">GNU Social</h2> <h2 id="org8fba16b">GNU Social</h2>
<div class="outline-text-2" id="text-orgb53ae00"> <div class="outline-text-2" id="text-org8fba16b">
<p> <p>
Federated social network. You can "<i>remote follow</i>" other users within the GNU Social federation. Federated social network. You can "<i>remote follow</i>" other users within the GNU Social federation.
</p> </p>
@ -317,27 +317,27 @@ Federated social network. You can "<i>remote follow</i>" other users within the
</p> </p>
</div> </div>
</div> </div>
<div id="outline-container-orgdd04797" class="outline-2"> <div id="outline-container-org6f5afe6" class="outline-2">
<h2 id="orgdd04797">Gogs</h2> <h2 id="org6f5afe6">Gogs</h2>
<div class="outline-text-2" id="text-orgdd04797"> <div class="outline-text-2" id="text-org6f5afe6">
<p> <p>
Lightweight git project hosting system. You can mirror projects from Github, or if Github turns evil then just host your own projects while retaining the familiar <i>fork-and-pull</i> workflow. If you can use Github then you can also use Gogs. Lightweight git project hosting system. You can mirror projects from Github, or if Github turns evil then just host your own projects while retaining the familiar <i>fork-and-pull</i> workflow. If you can use Github then you can also use Gogs.
</p> </p>
</div> </div>
</div> </div>
<div id="outline-container-org4eeb90c" class="outline-2"> <div id="outline-container-org5746649" class="outline-2">
<h2 id="org4eeb90c">HTMLy</h2> <h2 id="org5746649">HTMLy</h2>
<div class="outline-text-2" id="text-org4eeb90c"> <div class="outline-text-2" id="text-org5746649">
<p> <p>
Databaseless blogging system. Quite simple and with a markdown-like format. Databaseless blogging system. Quite simple and with a markdown-like format.
</p> </p>
</div> </div>
</div> </div>
<div id="outline-container-orgf59d7ef" class="outline-2"> <div id="outline-container-org3067f30" class="outline-2">
<h2 id="orgf59d7ef">Hubzilla</h2> <h2 id="org3067f30">Hubzilla</h2>
<div class="outline-text-2" id="text-orgf59d7ef"> <div class="outline-text-2" id="text-org3067f30">
<p> <p>
Web publishing platform with social network like features and good privacy controls so that it's possible to specify who can see which content. Includes photo albums, calendar, wiki and file storage. Web publishing platform with social network like features and good privacy controls so that it's possible to specify who can see which content. Includes photo albums, calendar, wiki and file storage.
</p> </p>
@ -347,9 +347,9 @@ Web publishing platform with social network like features and good privacy contr
</p> </p>
</div> </div>
</div> </div>
<div id="outline-container-org0f04bb4" class="outline-2"> <div id="outline-container-org6b0640e" class="outline-2">
<h2 id="org0f04bb4">IRC Server (ngirc)</h2> <h2 id="org6b0640e">IRC Server (ngirc)</h2>
<div class="outline-text-2" id="text-org0f04bb4"> <div class="outline-text-2" id="text-org6b0640e">
<p> <p>
Run your own IRC chat channel which can be secured with a password and accessible via an onion address. A bouncer is included so that you can receive messages sent while you were offline. Works with Hexchat and other popular clients. Run your own IRC chat channel which can be secured with a password and accessible via an onion address. A bouncer is included so that you can receive messages sent while you were offline. Works with Hexchat and other popular clients.
</p> </p>
@ -359,36 +359,36 @@ Run your own IRC chat channel which can be secured with a password and accessibl
</p> </p>
</div> </div>
</div> </div>
<div id="outline-container-org8677343" class="outline-2"> <div id="outline-container-org3673a78" class="outline-2">
<h2 id="org8677343">Jitsi Meet</h2> <h2 id="org3673a78">Jitsi Meet</h2>
<div class="outline-text-2" id="text-org8677343"> <div class="outline-text-2" id="text-org3673a78">
<p> <p>
Experimental WebRTC video conferencing system, similar to Google Hangouts. This may not be fully functional, but is hoped to be in the near future. Experimental WebRTC video conferencing system, similar to Google Hangouts. This may not be fully functional, but is hoped to be in the near future.
</p> </p>
</div> </div>
</div> </div>
<div id="outline-container-org9bee35c" class="outline-2"> <div id="outline-container-org52c8925" class="outline-2">
<h2 id="org9bee35c">Lychee</h2> <h2 id="org52c8925">Lychee</h2>
<div class="outline-text-2" id="text-org9bee35c"> <div class="outline-text-2" id="text-org52c8925">
<p> <p>
Make your photo albums available on the web. Make your photo albums available on the web.
</p> </p>
</div> </div>
</div> </div>
<div id="outline-container-org99d46aa" class="outline-2"> <div id="outline-container-orge747965" class="outline-2">
<h2 id="org99d46aa">Mailpile</h2> <h2 id="orge747965">Mailpile</h2>
<div class="outline-text-2" id="text-org99d46aa"> <div class="outline-text-2" id="text-orge747965">
<p> <p>
Modern email client which supports GPG encryption. Modern email client which supports GPG encryption.
</p> </p>
</div> </div>
</div> </div>
<div id="outline-container-org1f3d613" class="outline-2"> <div id="outline-container-org4a8c2a9" class="outline-2">
<h2 id="org1f3d613">Mumble</h2> <h2 id="org4a8c2a9">Mumble</h2>
<div class="outline-text-2" id="text-org1f3d613"> <div class="outline-text-2" id="text-org4a8c2a9">
<p> <p>
The popular VoIP and text chat system. Say goodbye to old-fashioned telephony conferences with silly dial codes. Also works well on mobile. The popular VoIP and text chat system. Say goodbye to old-fashioned telephony conferences with silly dial codes. Also works well on mobile.
</p> </p>
@ -398,45 +398,48 @@ The popular VoIP and text chat system. Say goodbye to old-fashioned telephony co
</p> </p>
</div> </div>
</div> </div>
<div id="outline-container-org24bef8c" class="outline-2"> <div id="outline-container-orgd8b1747" class="outline-2">
<h2 id="org24bef8c">PI-Hole</h2> <h2 id="orgd8b1747">PI-Hole</h2>
<div class="outline-text-2" id="text-org24bef8c"> <div class="outline-text-2" id="text-orgd8b1747">
<p> <p>
The black hole for web adverts. Block adverts at the domain name level within your local network. It can significantly reduce bandwidth, speed up page load times and protect your systems from being tracked by spyware. The black hole for web adverts. Block adverts at the domain name level within your local network. It can significantly reduce bandwidth, speed up page load times and protect your systems from being tracked by spyware.
</p> </p>
</div> </div>
</div> </div>
<div id="outline-container-org5a38a3c" class="outline-2"> <div id="outline-container-org205ed4c" class="outline-2">
<h2 id="org5a38a3c">PostActiv</h2> <h2 id="org205ed4c">PostActiv</h2>
<div class="outline-text-2" id="text-org5a38a3c"> <div class="outline-text-2" id="text-org205ed4c">
<p> <p>
An alternative federated social networking system compatible with GNU Social. It includes some optimisations and fixes currently not available within the main GNU Social project. An alternative federated social networking system compatible with GNU Social. It includes some optimisations and fixes currently not available within the main GNU Social project.
</p> </p>
</div> </div>
</div> </div>
<div id="outline-container-org051adb1" class="outline-2"> <div id="outline-container-org6777291" class="outline-2">
<h2 id="org051adb1">Radicale</h2> <h2 id="org6777291">Radicale</h2>
<div class="outline-text-2" id="text-org051adb1"> <div class="outline-text-2" id="text-org6777291">
<p> <p>
Calendar system compatible with CalDAV and CardDAV. Manage your calendar events easily across all your devices. Calendar system compatible with CalDAV and CardDAV. Manage your calendar events easily across all your devices.
</p> </p>
</div> </div>
</div> </div>
<div id="outline-container-orgc88fda9" class="outline-2"> <div id="outline-container-org04f022b" class="outline-2">
<h2 id="orgc88fda9">tt-rss</h2> <h2 id="org04f022b">tt-rss</h2>
<div class="outline-text-2" id="text-orgc88fda9"> <div class="outline-text-2" id="text-org04f022b">
<p> <p>
Private RSS reader. Pulls in RSS/Atom feeds via Tor and is only accessible via an onion address. Have "<i>the right to read</i>" without the Surveillance State knowing what you're reading. Also available with a user interface suitable for viewing on mobile devices via a browser such as OrFox. Private RSS reader. Pulls in RSS/Atom feeds via Tor and is only accessible via an onion address. Have "<i>the right to read</i>" without the Surveillance State knowing what you're reading. Also available with a user interface suitable for viewing on mobile devices via a browser such as OrFox.
</p> </p>
</div>
</div>
<div id="outline-container-org75358fa" class="outline-2"> <p>
<h2 id="org75358fa">Syncthing</h2> <a href="./app_rss.html">How to use it</a>
<div class="outline-text-2" id="text-org75358fa"> </p>
</div>
</div>
<div id="outline-container-org2d2cfa7" class="outline-2">
<h2 id="org2d2cfa7">Syncthing</h2>
<div class="outline-text-2" id="text-org2d2cfa7">
<p> <p>
Possibly the best way to synchronise files across all of your devices. Once it has been set up it "just works" with no user intervention needed. Possibly the best way to synchronise files across all of your devices. Once it has been set up it "just works" with no user intervention needed.
</p> </p>
@ -446,9 +449,9 @@ Possibly the best way to synchronise files across all of your devices. Once it h
</p> </p>
</div> </div>
</div> </div>
<div id="outline-container-orgff69598" class="outline-2"> <div id="outline-container-org427b028" class="outline-2">
<h2 id="orgff69598">Tox</h2> <h2 id="org427b028">Tox</h2>
<div class="outline-text-2" id="text-orgff69598"> <div class="outline-text-2" id="text-org427b028">
<p> <p>
Client and bootstrap node for the Tox chat/VoIP system. Client and bootstrap node for the Tox chat/VoIP system.
</p> </p>
@ -458,18 +461,18 @@ Client and bootstrap node for the Tox chat/VoIP system.
</p> </p>
</div> </div>
</div> </div>
<div id="outline-container-org41dc75f" class="outline-2"> <div id="outline-container-orgc67de70" class="outline-2">
<h2 id="org41dc75f">Vim</h2> <h2 id="orgc67de70">Vim</h2>
<div class="outline-text-2" id="text-org41dc75f"> <div class="outline-text-2" id="text-orgc67de70">
<p> <p>
If you use the Mutt client to read your email then this will set it up to use vim for composing new mail. If you use the Mutt client to read your email then this will set it up to use vim for composing new mail.
</p> </p>
</div> </div>
</div> </div>
<div id="outline-container-org1482c85" class="outline-2"> <div id="outline-container-orgd06f6f3" class="outline-2">
<h2 id="org1482c85">XMPP</h2> <h2 id="orgd06f6f3">XMPP</h2>
<div class="outline-text-2" id="text-org1482c85"> <div class="outline-text-2" id="text-orgd06f6f3">
<p> <p>
Chat server which can be used together with client such as Gajim or Conversations to provide end-to-end content security and also onion routed metadata security. Includes advanced features such as <i>client state notification</i> to save battery power on your mobile devices, support for seamless roaming between networks and <i>message carbons</i> so that you can receive the same messages while being simultaneously logged in to your account on more than one device. Chat server which can be used together with client such as Gajim or Conversations to provide end-to-end content security and also onion routed metadata security. Includes advanced features such as <i>client state notification</i> to save battery power on your mobile devices, support for seamless roaming between networks and <i>message carbons</i> so that you can receive the same messages while being simultaneously logged in to your account on more than one device.
</p> </p>

View File

@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"> <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head> <head>
<!-- 2016-11-12 Sat 22:54 --> <!-- 2016-11-12 Sat 23:05 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" /> <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" /> <meta name="viewport" content="width=device-width, initial-scale=1" />
<title></title> <title></title>
@ -255,15 +255,15 @@ for the JavaScript code in this tag.
</colgroup> </colgroup>
<tbody> <tbody>
<tr> <tr>
<td class="org-left"><a href="#org18f5094">Readme</a></td> <td class="org-left"><a href="#org23abd36">Readme</a></td>
</tr> </tr>
<tr> <tr>
<td class="org-left"><a href="#org14f4bd4">Improving ssh security</a></td> <td class="org-left"><a href="#orgb27a404">Improving ssh security</a></td>
</tr> </tr>
<tr> <tr>
<td class="org-left"><a href="#orga9ee65a">Administrating the system via an onion address (Tor)</a></td> <td class="org-left"><a href="#org406b9c4">Administrating the system via an onion address (Tor)</a></td>
</tr> </tr>
<tr> <tr>
@ -307,26 +307,26 @@ for the JavaScript code in this tag.
</tr> </tr>
<tr> <tr>
<td class="org-left"><a href="#orgaa7ee3f">RSS Reader</a></td> <td class="org-left"><a href="./app_rss.html">RSS Reader</a></td>
</tr> </tr>
<tr> <tr>
<td class="org-left"><a href="#org96f00d6">Git Projects</a></td> <td class="org-left"><a href="#org2b5ad1e">Git Projects</a></td>
</tr> </tr>
<tr> <tr>
<td class="org-left"><a href="#org902fe36">Adding or removing users</a></td> <td class="org-left"><a href="#org6b00b78">Adding or removing users</a></td>
</tr> </tr>
<tr> <tr>
<td class="org-left"><a href="#orgee498e5">Blocking Ads</a></td> <td class="org-left"><a href="#org5f849d3">Blocking Ads</a></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
<div id="outline-container-org18f5094" class="outline-2"> <div id="outline-container-org23abd36" class="outline-2">
<h2 id="org18f5094">Readme</h2> <h2 id="org23abd36">Readme</h2>
<div class="outline-text-2" id="text-org18f5094"> <div class="outline-text-2" id="text-org23abd36">
<p> <p>
After the system has installed a README file will be generated which contains passwords and some brief advice on using the installed systems. You can read this with the following commands: After the system has installed a README file will be generated which contains passwords and some brief advice on using the installed systems. You can read this with the following commands:
</p> </p>
@ -346,9 +346,9 @@ To exit you can either just close the terminal or use <b>CTRL-x CTRL-c</b> follo
</p> </p>
</div> </div>
</div> </div>
<div id="outline-container-org14f4bd4" class="outline-2"> <div id="outline-container-orgb27a404" class="outline-2">
<h2 id="org14f4bd4">Improving ssh security</h2> <h2 id="orgb27a404">Improving ssh security</h2>
<div class="outline-text-2" id="text-org14f4bd4"> <div class="outline-text-2" id="text-orgb27a404">
<p> <p>
To improve ssh security you can generate an ssh key pair on your system and then upload the public key to the Freedombone. To improve ssh security you can generate an ssh key pair on your system and then upload the public key to the Freedombone.
</p> </p>
@ -398,9 +398,9 @@ If you wish to only use ssh keys then log in to the Freedombone, become the root
</div> </div>
</div> </div>
<div id="outline-container-orga9ee65a" class="outline-2"> <div id="outline-container-org406b9c4" class="outline-2">
<h2 id="orga9ee65a">Administrating the system via an onion address (Tor)</h2> <h2 id="org406b9c4">Administrating the system via an onion address (Tor)</h2>
<div class="outline-text-2" id="text-orga9ee65a"> <div class="outline-text-2" id="text-org406b9c4">
<p> <p>
You can also access your system via the Tor system using an onion address. To find out what the onion address for ssh access is you can do the following: You can also access your system via the Tor system using an onion address. To find out what the onion address for ssh access is you can do the following:
</p> </p>
@ -442,104 +442,9 @@ Subsequently even if dynamic DNS isn't working you may still be able to administ
</p> </p>
</div> </div>
</div> </div>
<div id="outline-container-orgaa7ee3f" class="outline-2"> <div id="outline-container-org2b5ad1e" class="outline-2">
<h2 id="orgaa7ee3f">RSS Reader</h2> <h2 id="org2b5ad1e">Git Projects</h2>
<div class="outline-text-2" id="text-orgaa7ee3f"> <div class="outline-text-2" id="text-org2b5ad1e">
<p>
The way that RSS reading is set up on Freedombone gives you strong reading privacy. Not only is there onion routing between you and the server but also between the server and the source of the RSS feed. The only down side is that many RSS feeds are still http only, and so could be vulnerable to injection attacks, but it's expected that more of this will go to https in the foreseeable future due to a combination of growing recognition of security issues and systems like Let's Encrypt which make obtaining certificates much easier.
</p>
<div class="figure">
<p><img src="images/rss_reader_mobile.jpg" alt="rss_reader_mobile.jpg" />
</p>
</div>
</div>
<div id="outline-container-org971df70" class="outline-3">
<h3 id="org971df70">Finding the onion address</h3>
<div class="outline-text-3" id="text-org971df70">
<p>
See the control panel for the RSS reader onion address.
</p>
<div class="org-src-container">
<pre class="src src-bash">ssh username@domainname -p 2222
</pre>
</div>
<p>
Select <i>Administrator controls</i> then select the <b>About</b> screen.
</p>
<p>
The RSS reader is accessible only via an onion address. This provides a reasonable degree of reading privacy, making it difficult for passive adversaries such as governments, corporations or criminals to create lists of sites which you are subscribed to.
</p>
<p>
To set up the system open <a href="http://rss_reader_onion_address">http://rss_reader_onion_address</a> and log in with username <b>admin</b> and the password obtained either at the beginning of the install or from the README file in your home directory. You can then select the <b>Actions</b> menu and begin adding your feeds.
</p>
</div>
</div>
<div id="outline-container-orgbab6d5e" class="outline-3">
<h3 id="orgbab6d5e">On mobile</h3>
<div class="outline-text-3" id="text-orgbab6d5e">
<p>
To access the RSS reader from a mobile device you can install a Tor compatible browser such as OrFox. It will try to automatically change to the mobile version of the user interface. Remember to add the site to the NoScript whitelist, and you may also need to turn HTTPS Everywhere off.
</p>
<blockquote>
<p>
A note for the paranoid is that on mobile devices you get redirected to a different onion address which is specially set up for the mobile interface, so don't be alarmed that it looks like your connection is being hijacked.
</p>
</blockquote>
</div>
</div>
<div id="outline-container-orgc5f38f9" class="outline-3">
<h3 id="orgc5f38f9">With Emacs</h3>
<div class="outline-text-3" id="text-orgc5f38f9">
<p>
If you are an Emacs user then you can also read your RSS feeds via the <a href="https://github.com/dk87/avandu">Avandu</a> mode.
</p>
<p>
Add the following to your configuration, changing the address and password as appropriate.
</p>
<div class="org-src-container">
<pre class="src src-emacs-lisp">(<span class="org-keyword">setq</span> avandu-tt-rss-api-url <span class="org-string">"http://rss_reader_onion_address/api/"</span>
avandu-user <span class="org-string">"admin"</span>
avandu-password <span class="org-string">"mypassword"</span>)
</pre>
</div>
<p>
If you don't already have Emacs set up to route through Tor then also add the following:
</p>
<div class="org-src-container">
<pre class="src src-emacs-lisp">(<span class="org-keyword">setq</span> socks-noproxy '(<span class="org-string">"localhost"</span>))
(<span class="org-keyword">require</span> '<span class="org-constant">socks</span>)
(<span class="org-keyword">require</span> '<span class="org-constant">tls</span>)
(<span class="org-keyword">setq</span> socks-server (list <span class="org-string">"Tor socks"</span> <span class="org-string">"localhost"</span> 9050 5))
</pre>
</div>
<p>
And ensure that the Tor daemon is installed:
</p>
<div class="org-src-container">
<pre class="src src-bash">sudo apt-get install tor
</pre>
</div>
</div>
</div>
</div>
<div id="outline-container-org96f00d6" class="outline-2">
<h2 id="org96f00d6">Git Projects</h2>
<div class="outline-text-2" id="text-org96f00d6">
<p> <p>
Github is ok, but it's proprietary and funded by venture capital. If you been around on the internet for long enough then you know how this story eventually works itself out - i.e. badly for the users. It's really only a question of time. If you're a software developer or do things which involve the Git version control system then it's a good idea to become accustomed to hosting your own repositories, before the inevitable Github shitstorm happens. Github is ok, but it's proprietary and funded by venture capital. If you been around on the internet for long enough then you know how this story eventually works itself out - i.e. badly for the users. It's really only a question of time. If you're a software developer or do things which involve the Git version control system then it's a good idea to become accustomed to hosting your own repositories, before the inevitable Github shitstorm happens.
</p> </p>
@ -575,9 +480,9 @@ This will stop any spam accounts being created by random strangers or bots. You
</p> </p>
</div> </div>
</div> </div>
<div id="outline-container-org902fe36" class="outline-2"> <div id="outline-container-org6b00b78" class="outline-2">
<h2 id="org902fe36">Adding or removing users</h2> <h2 id="org6b00b78">Adding or removing users</h2>
<div class="outline-text-2" id="text-org902fe36"> <div class="outline-text-2" id="text-org6b00b78">
<p> <p>
Log into the system with: Log into the system with:
</p> </p>
@ -605,9 +510,9 @@ control
</div> </div>
</div> </div>
<div id="outline-container-orgee498e5" class="outline-2"> <div id="outline-container-org5f849d3" class="outline-2">
<h2 id="orgee498e5">Blocking Ads</h2> <h2 id="org5f849d3">Blocking Ads</h2>
<div class="outline-text-2" id="text-orgee498e5"> <div class="outline-text-2" id="text-org5f849d3">
<p> <p>
Everyone except for advertisers hates adverts. Not only are they annoying, but they can consume a lot of bandwidth, be a privacy problem in terms of allowing companies to track your browsing habits and also any badly written scripts they contain may introduce exploitable security holes. Also if you're poor then adverts often make you want things that you can't have. Everyone except for advertisers hates adverts. Not only are they annoying, but they can consume a lot of bandwidth, be a privacy problem in terms of allowing companies to track your browsing habits and also any badly written scripts they contain may introduce exploitable security holes. Also if you're poor then adverts often make you want things that you can't have.
</p> </p>
@ -621,9 +526,9 @@ Also don't expect perfection. Though many ads may be blocked by this system some
</p> </p>
</div> </div>
<div id="outline-container-org30be587" class="outline-3"> <div id="outline-container-orgc118780" class="outline-3">
<h3 id="org30be587">Set a static IP address</h3> <h3 id="orgc118780">Set a static IP address</h3>
<div class="outline-text-3" id="text-org30be587"> <div class="outline-text-3" id="text-orgc118780">
<p> <p>
Ensure that your system has a static local IP address (typically 192.168..) using the option on the control panel. You will also need to know the IP address of your internet router, which is usually <b>192.168.1.1</b> or <b>192.168.1.254</b>. Ensure that your system has a static local IP address (typically 192.168..) using the option on the control panel. You will also need to know the IP address of your internet router, which is usually <b>192.168.1.1</b> or <b>192.168.1.254</b>.
</p> </p>
@ -634,9 +539,9 @@ When that's done select <b>About this system</b> from the control panel and see
</div> </div>
</div> </div>
<div id="outline-container-org4da7017" class="outline-3"> <div id="outline-container-orgf236d40" class="outline-3">
<h3 id="org4da7017">On each client system within your local network</h3> <h3 id="orgf236d40">On each client system within your local network</h3>
<div class="outline-text-3" id="text-org4da7017"> <div class="outline-text-3" id="text-orgf236d40">
<div class="org-src-container"> <div class="org-src-container">
<pre class="src src-bash">sudo chattr -i /etc/resolv.conf <pre class="src src-bash">sudo chattr -i /etc/resolv.conf
sudo nano /etc/resolv.conf sudo nano /etc/resolv.conf
@ -663,9 +568,9 @@ Normally <i>resolv.conf</i> will be overwritten every time your reboot, but you
</div> </div>
</div> </div>
<div id="outline-container-orgdf8640b" class="outline-3"> <div id="outline-container-orge601ffa" class="outline-3">
<h3 id="orgdf8640b">On your internet router</h3> <h3 id="orge601ffa">On your internet router</h3>
<div class="outline-text-3" id="text-orgdf8640b"> <div class="outline-text-3" id="text-orge601ffa">
<p> <p>
If you can access the settings on your local internet router then this is the simplest way to provide ad blocking for all devices which connect to it. Unfortunately some router models don't let you edit the DNS settings and if that's the case you might want to consider getting a different router. If you can access the settings on your local internet router then this is the simplest way to provide ad blocking for all devices which connect to it. Unfortunately some router models don't let you edit the DNS settings and if that's the case you might want to consider getting a different router.
</p> </p>
@ -675,9 +580,9 @@ Edit the DNS settings and add the IPv4 address which you got from the control pa
</p> </p>
</div> </div>
<div id="outline-container-org3817145" class="outline-4"> <div id="outline-container-org0d5eccb" class="outline-4">
<h4 id="org3817145">LibreCMC</h4> <h4 id="org0d5eccb">LibreCMC</h4>
<div class="outline-text-4" id="text-org3817145"> <div class="outline-text-4" id="text-org0d5eccb">
<p> <p>
On a router running LibreCMC from the <b>Network</b> menu select <b>DHCP and DNS</b>. Enter the static IP address of your Freedombone system within <b>DNS Forwardings</b>, then at the bottom of the page click on <b>Save &amp; Apply</b>. Any devices which connect to your router will now have ad blocking. On a router running LibreCMC from the <b>Network</b> menu select <b>DHCP and DNS</b>. Enter the static IP address of your Freedombone system within <b>DNS Forwardings</b>, then at the bottom of the page click on <b>Save &amp; Apply</b>. Any devices which connect to your router will now have ad blocking.
</p> </p>
@ -685,9 +590,9 @@ On a router running LibreCMC from the <b>Network</b> menu select <b>DHCP and DNS
</div> </div>
</div> </div>
<div id="outline-container-org88c9019" class="outline-3"> <div id="outline-container-orgbfa50dc" class="outline-3">
<h3 id="org88c9019">Configuring block lists</h3> <h3 id="orgbfa50dc">Configuring block lists</h3>
<div class="outline-text-3" id="text-org88c9019"> <div class="outline-text-3" id="text-orgbfa50dc">
<p> <p>
You can configure the block lists which the system uses by going to the <b>administrator control panel</b>, selecting <b>App Settings</b> then choosing <b>pihole</b>. You can also add any extra domain names to the whitelist if they're being wrongly blocked or to the blacklist if they're not blocked by the current lists. You can configure the block lists which the system uses by going to the <b>administrator control panel</b>, selecting <b>App Settings</b> then choosing <b>pihole</b>. You can also add any extra domain names to the whitelist if they're being wrongly blocked or to the blacklist if they're not blocked by the current lists.
</p> </p>