summaryrefslogtreecommitdiff
path: root/frags/installing-ubuntu.rst
diff options
context:
space:
mode:
Diffstat (limited to 'frags/installing-ubuntu.rst')
-rw-r--r--frags/installing-ubuntu.rst24
1 files changed, 18 insertions, 6 deletions
diff --git a/frags/installing-ubuntu.rst b/frags/installing-ubuntu.rst
index 458d0b3c..89ca4dc9 100644
--- a/frags/installing-ubuntu.rst
+++ b/frags/installing-ubuntu.rst
@@ -1,23 +1,35 @@
To install the GNU Taler Ubuntu packages, first ensure that you have
the right Ubuntu distribution. At this time, the packages are built for
-Ubuntu 22.04 LTS (Jammy Jellyfish).
+Ubuntu Lunar and Ubuntu Jammy. Make sure to have ``universe`` in your
+``/etc/apt/sources.list`` (after ``main``) as we depend on some packages
+from Ubuntu ``universe``.
A typical ``/etc/apt/sources.list.d/taler.list`` file for this setup
-would look like this:
+would look like this for Ubuntu Lunar:
.. code-block::
- deb https://deb.taler.net/apt/ubuntu/ jammy main
+ deb [signed-by=/etc/apt/keyrings/taler-systems.gpg] https://deb.taler.net/apt/ubuntu/ lunar taler-lunar
-The last line is crucial, as it adds the GNU Taler packages.
+For Ubuntu Mantic use this instead:
+
+.. code-block::
+
+ deb [signed-by=/etc/apt/keyrings/taler-systems.gpg] https://deb.taler.net/apt/ubuntu/ mantic taler-mantic
+
+For Ubuntu Noble use this instead:
+
+.. code-block::
+
+ deb [signed-by=/etc/apt/keyrings/taler-systems.gpg] https://deb.taler.net/apt/ubuntu/ noble taler-noble
Next, you must import the Taler Systems SA public package signing key
into your keyring and update the package lists:
.. code-block:: console
- # wget -O /etc/apt/trusted.gpg.d/taler-systems.asc \
- https://taler.net/taler-systems.gpg.key
+ # wget -O /etc/apt/keyrings/taler-systems.gpg \
+ https://taler.net/taler-systems.gpg
# apt update
.. note::