freedombone/doc/EN/app_gnusocial.org

121 lines
6.6 KiB
Org Mode
Raw Permalink Normal View History

2016-11-12 19:38:02 +01:00
#+TITLE:
#+AUTHOR: Bob Mottram
#+EMAIL: bob@freedombone.net
#+KEYWORDS: freedombone, gnu social
#+DESCRIPTION: How to use GNU Social
#+OPTIONS: ^:nil toc:nil
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="freedombone.css" />
2018-04-12 14:01:49 +02:00
#+attr_html: :width 80% :height 10% :align center
2016-11-12 19:38:02 +01:00
[[file:images/logo.png]]
2018-04-12 14:01:49 +02:00
* GNU Social
2016-11-12 19:38:02 +01:00
GNU Social is typically referred to as a microblogging system, although with a maximum post length much longer than Twitter it's really a sort of federated community blog with a stream-based appearance which also supports markdown formatting.
You can host your own GNU Social instance and then "/remote follow/" other users who may also be doing the same. With a federated structure this type of system is hard to censor or ban. Unlike Twitter, there are no bribed adverts pushed into your stream, and any trends happening are likely to be real rather than being manipulated by some opaque algorithm.
You should regard anything posted to GNU Social as being /public communication/ visible to anyone on the internet. There is a direct messaging capability between users but it's not particularly secure, so for one-to-one messages stick to better methods, such as XMPP with OpenPGP/OMEMO or Tox.
2016-11-12 19:38:02 +01:00
2017-05-09 16:00:52 +02:00
Some general advice about life in the fediverse [[./fediverse.html][can be found here]].
2018-04-12 14:01:49 +02:00
#+attr_html: :width 100% :align center
2017-04-11 22:09:14 +02:00
[[file:images/gnusocial_pleroma.jpg]]
* Installation
Log into your system with:
#+begin_src bash
ssh myusername@mydomain -p 2222
#+end_src
2018-06-16 22:53:50 +02:00
Using cursor keys and Enter key select *Administrator controls* and type in your password.
Select *Add/Remove Apps* then *gnusocial*. You will then be asked for a domain name and if you are using FreeDNS also the code for the domain which can be found under *Dynamic DNS* on the FreeDNS site (the random string from "/quick cron example/" which appears after /update.php?/ and before />>/). For more details on obtaining a domain and making it accessible via dynamic DNS see the [[./faq.html][FAQ]]. You can also add a welcome message and background picture URL if you wish, although those things are optional. Typically the domain name you use will be a subdomain, such as /gnusocial.mydomainname.net/. It will need to be a domain which you have bought somewhere and own and not one of the FreeDNS subdomains, otherwise you won't be able to get a SSL/TLS certificate for it.
After the install has completed go to *Security settings* and select *Create a new Let's Encrypt certificate* and enter the domain name that you are using for GNU Social. If you're using the "onion only" version of the system then you don't need to do this. If the certificate is obtained successfully then you will see a congratulations message.
2016-11-12 19:38:02 +01:00
* Initial setup
2016-11-14 14:12:21 +01:00
If you have just obtained a Lets Encrypt certificate as above then go to *About* on the administrator control panel and you should see your GNU Social domain listed there along with an onion address. You can then navigate to your site in a browser.
2016-11-12 19:38:02 +01:00
To see the login password for your site go to *Passwords* on the *Administrator control panel* and select the appropriate username and app. The passwords will be different for each user and may not be the same as the password which you used to originally ssh into the system.
2016-11-14 14:12:21 +01:00
Once you have logged in to GNU Social you may then want to select *Admin* and check or change the details. You may also wish to change the license for the site to be either Creative Commons or private.
2016-11-12 19:38:02 +01:00
GNU Social has a clutter-free mobile user interface which can be accessed via a Tor compatible browser (make sure to add a NoScript exception). Unlike similar proprietary sites there are no bribed posts.
2018-04-12 14:01:49 +02:00
#+attr_html: :width 80% :align center
2016-11-12 19:38:02 +01:00
[[file:images/gnusocial_mobile.jpg]]
* Switching user interfaces
A few web based user interfaces are available for GNU SOcial. They are selectable by going to the *Administrator control panel* and choosing *App settings* then *gnusocial*.
2018-04-12 14:01:49 +02:00
#+attr_html: :width 80% :align center
[[file:images/gnusocial_settings.jpg]]
* *Qvitter*: Looks similar to Twitter during its golden era, before the ads and other antifeatures arrived
* *Pleroma*: A modern and lightweight user interface
* *Classic*: Like the original StatusNet UI. Minimal Javascript and has good support for threaded conversations.
2016-11-12 19:38:02 +01:00
* Using with Emacs
2017-04-11 22:14:17 +02:00
2018-04-12 14:01:49 +02:00
#+attr_html: :width 100% :align center
2017-04-11 22:14:17 +02:00
[[file:images/gnu-social-mode.jpg]]
2016-11-12 19:38:02 +01:00
If you are an Emacs user it's also possible to set up GNU Social mode as follows:
#+begin_src bash :tangle no
mkdir ~/elisp
git clone https://code.freedombone.net/bashrc/gnu-social-mode ~/elisp/gnu-social-mode
2016-11-12 19:38:02 +01:00
echo "(add-to-list 'load-path \"~/elisp/gnu-social-mode\")" >> ~/.emacs
echo "(require 'gnu-social-mode)" >> ~/.emacs
echo "(setq gnu-social-server-textlimit 2000" >> ~/.emacs
echo " gnu-social-server \"yourgnusocialdomain\"" >> ~/.emacs
echo " gnu-social-username \"yourusername\"" >> ~/.emacs
echo " gnu-social-password \"gnusocialpassword\")" >> ~/.emacs
#+end_src
And as a quick reference the main keys are:
2017-04-27 17:28:20 +02:00
#+begin_src bash :tangle no
M-x gnu-social
#+end_src
The basics:
2016-11-12 19:38:02 +01:00
| i | Show icons |
| CTRL-c CTRL-s | Post status update |
| r | Repeat |
| F | Favourite |
| CTRL-c CTRL-h | Highlight |
2017-04-27 17:28:20 +02:00
| R | Reply to user |
2016-11-12 19:38:02 +01:00
| CTRL-c CTRL-r | Show replies |
| CTRL-c CTRL-f | Friends timeline |
2017-04-27 17:28:20 +02:00
| CTRL-c CTRL-v | View user profile |
Navigation:
| j | Next |
| k | Previous |
Showing timelines:
2017-04-27 16:39:57 +02:00
2017-04-27 17:28:20 +02:00
| g | Current timeline |
| CTRL-c CTRL-a | Public timeline |
| CTRL-c CTRL-g | Group timeline |
| CTRL-c CTRL-t | Tag timeline |
| CTRL-c CTRL-k | Stop |
| CTRL-c CTRL-u | User timeline |
| CTRL-c CTRL-c | Conversation timeline |
| CTRL-c CTRL-o | Remote user timeline |
| CTRL-c CTRL-d | Post direct Message |
2017-04-27 16:39:57 +02:00
* Blocking controls
2018-04-12 14:01:49 +02:00
#+attr_html: :width 80% :align center
2017-04-27 16:53:19 +02:00
[[file:images/controlpanel/control_panel_blocking.jpg]]
2017-04-27 16:56:52 +02:00
The biggest hazard with GNU Social is that it's part of a public federated communications system. This means that conversations and replies from other servers may end up in your "whole known network" stream. The internet being what it is, some of these could be undesirable. You can block individual users or entire domains by going to the *Administrator control panel* and selecting *Domain or User Blocking*, then adding or removing entries. This blocks domains at the firewall level and also at the level of database and file storage.
2017-04-27 16:39:57 +02:00
If you want to block a particular user then select *Block a domain or user* and enter the user in the format *username@domaintoblock* (similar to an email address).