diff options
Diffstat (limited to 'doc/sphinx/frags/installing-ubuntu.rst')
-rw-r--r-- | doc/sphinx/frags/installing-ubuntu.rst | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/doc/sphinx/frags/installing-ubuntu.rst b/doc/sphinx/frags/installing-ubuntu.rst new file mode 100644 index 0000000..1283104 --- /dev/null +++ b/doc/sphinx/frags/installing-ubuntu.rst | |||
@@ -0,0 +1,27 @@ | |||
1 | To install the GNU Taler Ubuntu packages, first ensure that you have | ||
2 | the right Ubuntu distribution. At this time, the packages are built for | ||
3 | Ubuntu 20.04 LTS (Focal Fossa). | ||
4 | |||
5 | A typical ``/etc/apt/sources.list.d/taler.list`` file for this setup | ||
6 | would look like this: | ||
7 | |||
8 | .. code-block:: | ||
9 | |||
10 | deb https://deb.taler.net/apt/ubuntu/ focal-fossa main | ||
11 | |||
12 | The last line is crucial, as it adds the GNU Taler packages. | ||
13 | |||
14 | Next, you must import the Taler Systems SA public package signing key | ||
15 | into your keyring and update the package lists: | ||
16 | |||
17 | .. code-block:: console | ||
18 | |||
19 | # wget -O - https://taler.net/taler-systems.gpg.key | apt-key add - | ||
20 | # apt update | ||
21 | |||
22 | .. note:: | ||
23 | |||
24 | You may want to verify the correctness of the Taler Systems key out-of-band. | ||
25 | |||
26 | Now your system is ready to install the official GNU Taler binary packages | ||
27 | using apt. | ||