freedombone/doc/EN/usage.org

118 lines
5.4 KiB
Org Mode
Raw Normal View History

2014-10-25 20:09:46 +02:00
#+TITLE:
#+AUTHOR: Bob Mottram
2016-10-31 17:24:49 +01:00
#+EMAIL: bob@freedombone.net
#+KEYWORDS: freedombox, debian, beaglebone, hubzilla, email, web server, home server, internet, censorship, surveillance, social network, irc, jabber
2014-10-25 20:09:46 +02:00
#+DESCRIPTION: Turn the Beaglebone Black into a personal communications server
2015-07-05 20:58:40 +02:00
#+OPTIONS: ^:nil toc:nil
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="freedombone.css" />
2016-01-07 15:51:37 +01:00
#+BEGIN_CENTER
[[file:images/logo.png]]
#+END_CENTER
2014-10-25 20:09:46 +02:00
#+BEGIN_EXPORT html
2015-12-16 20:56:29 +01:00
<center>
2016-01-07 16:00:30 +01:00
<h1>Usage</h1>
2015-12-16 20:56:29 +01:00
</center>
#+END_EXPORT
2015-12-16 20:56:29 +01:00
2016-01-08 15:22:58 +01:00
| [[Readme]] |
| [[Improving ssh security]] |
2016-01-08 15:09:24 +01:00
| [[Administrating the system via an onion address (Tor)]] |
2016-05-12 22:35:35 +02:00
| [[./mobile.html][Mobile advice]] |
2016-03-28 12:05:46 +02:00
| [[./usage_email.html][Using Email]] |
2016-11-12 19:00:38 +01:00
| [[./app_syncthing.html][Syncing to the Cloud]] |
2016-11-12 21:19:58 +01:00
| [[./app_dlna.html][Play Music]] |
2016-11-12 19:38:02 +01:00
| [[./app_gnusocial.html][Microblogging (GNU Social)]] |
2016-11-12 20:07:24 +01:00
| [[./app_hubzilla.html][Social Network]] |
2016-11-12 21:28:55 +01:00
| [[./app_irc.html][Multi-user chat with IRC]] |
2016-11-12 22:10:41 +01:00
| [[./app_xmpp.html][XMPP/Jabber]] |
2016-11-12 23:21:12 +01:00
| [[./app_tox.html][Tox]] |
2016-11-12 23:54:40 +01:00
| [[./app_mumble.html][Mumble]] |
2016-11-13 00:06:26 +01:00
| [[./app_rss.html][RSS Reader]] |
2016-11-13 00:36:55 +01:00
| [[./app_gogs.html][Git Projects]] |
| [[Adding or removing users]] |
2016-11-13 00:56:05 +01:00
| [[./app_pihole.html][Blocking Ads]] |
2014-10-26 00:10:49 +02:00
2014-10-26 09:54:57 +01:00
* Readme
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:
#+BEGIN_SRC bash
ssh username@domainname -p 2222
emacs ~/README
#+END_SRC
2016-08-08 18:21:03 +02:00
You should transfer any passwords to a password manager such as [[https://www.keepassx.org/][KeepassX]] and then delete them from the README file. To save the file after removing passwords use *CTRL-x CTRL-s*.
2014-10-26 09:54:57 +01:00
To exit you can either just close the terminal or use *CTRL-x CTRL-c* followed by the *exit* command.
2014-12-08 19:43:32 +01:00
* Improving ssh security
To improve ssh security you can generate an ssh key pair on your system and then upload the public key to the Freedombone.
On your local machine:
#+BEGIN_SRC bash
ssh-keygen
#+END_SRC
For extra security you may also want to add a passphrase to the ssh private key. You can show the generated public key with:
#+BEGIN_SRC bash
cat ~/.ssh/id_rsa.pub
#+END_SRC
Log into your system and open the control panel.
2014-12-08 19:43:32 +01:00
#+BEGIN_SRC bash
ssh username@domain -p 2222
#+END_SRC
Select /Administrator controls/ then /Manage Users/ then /Change user ssh public key/. Copy and paste the public key here, then exit.
It's a good idea to also copy the contents of *~/.ssh/id_rsa* and *~/.ssh/id_rsa.pub* to you password manager, together with the private key password if you created one.
2014-12-08 19:43:32 +01:00
There are advantages and disadvantages to using ssh keys for logins. The advantage is that this is much more secure than a memorised password, but the disadvantage is that you need to carry your ssh keys around and be able to install them on any computer of mobile device that you use. In high security or hostile infosec environments it may not be possible to carry or use USB thumb drives containing your keys and so memorised passwords may be the only available choice.
If you wish to only use ssh keys then log in to the Freedombone, become the root user and open the control panel with the 'control' command. Select /Security Settings/ then keep hitting enter until you reach the question about allowing password logins. Select "no" for that, then apply the settings. Any subsequent attempts to log in via a password will then be denied.
2014-12-08 19:43:32 +01:00
2016-01-08 15:09:24 +01:00
* Administrating the system via an onion address (Tor)
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:
#+BEGIN_SRC bash
ssh username@freedombone.local -p 2222
#+END_SRC
Select /Administrator controls/ then select "About this system" and look for the onion address for ssh. You can then close the terminal and open another, then do the following on your local system:
#+BEGIN_SRC bash
freedombone-client
#+END_SRC
This will set up your ssh environment to be able to handle onion addresses. In addition if you use monkeysphere then you can do:
#+BEGIN_SRC bash
freedombone-client --ms yes
#+END_SRC
Then you can test ssh with:
2016-01-08 15:09:24 +01:00
#+BEGIN_SRC bash
ssh username@address.onion -p 2222
#+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.
* Adding or removing users
Log into the system with:
#+BEGIN_SRC bash
ssh username@domainname -p 2222
#+END_SRC
Select *Administrator controls* then *User Management*. Depending upon the type of installation after selecting administrator controls you might need to enter:
#+BEGIN_SRC bash
sudo su
control
#+END_SRC
2016-02-08 16:56:57 +01:00
2016-04-02 17:54:40 +02:00
[[file:images/controlpanel/control_panel_manage_users.jpg]]