summaryrefslogtreecommitdiff
path: root/taler-exchange-setup-guide.rst
diff options
context:
space:
mode:
authorThien-Thi Nguyen <ttn@gnuvola.org>2021-08-07 03:48:32 -0400
committerThien-Thi Nguyen <ttn@gnuvola.org>2021-08-07 03:48:32 -0400
commitd7a9cc098c3dd3b6e0d3a4d33b89f1e7b793e4ae (patch)
tree15a4a1719816ed8e187ea743ef24747126230a2c /taler-exchange-setup-guide.rst
parent34bdbcc905c2221e6068589f17c10606ac136a2c (diff)
downloaddocs-d7a9cc098c3dd3b6e0d3a4d33b89f1e7b793e4ae.tar.gz
docs-d7a9cc098c3dd3b6e0d3a4d33b89f1e7b793e4ae.tar.bz2
docs-d7a9cc098c3dd3b6e0d3a4d33b89f1e7b793e4ae.zip
document "dpkg --remove-architecture" hack
original source: <https://askubuntu.com/questions/741410/skipping-acquire-of-configured-file-main-binary-i386-packages-as-repository-x>
Diffstat (limited to 'taler-exchange-setup-guide.rst')
-rw-r--r--taler-exchange-setup-guide.rst7
1 files changed, 7 insertions, 0 deletions
diff --git a/taler-exchange-setup-guide.rst b/taler-exchange-setup-guide.rst
index 64d84344..9bbd51d0 100644
--- a/taler-exchange-setup-guide.rst
+++ b/taler-exchange-setup-guide.rst
@@ -86,6 +86,10 @@ your package sources:
[root@exchange-online]# cat > /etc/apt/sources.list.d/taler.list <<EOF
deb https://deb.taler.net/apt/ubuntu focal-fossa main
EOF
+ [root@exchange-online]# dpkg --remove-architecture i386
+
+The second command is optional. It tells ``apt-get update`` to not
+bother with the ``i386`` architecture (thus avoiding a warning, later).
Before installing Taler packages, you need to add the Taler Systems S.A. package
signing key to your list of trusted keys and update the package index:
@@ -98,6 +102,7 @@ signing key to your list of trusted keys and update the package index:
..
FIXME: This happens after the update.
N: Skipping acquire of configured file 'main/binary-i386/Packages' as repository 'https://deb.taler.net/apt/ubuntu focal-fossa InRelease' doesn't support architecture 'i386'
+ ttn sez: Try the "dpkg" command above; remove FIXME if it works.
Finally, the required packages can be installed:
@@ -943,3 +948,5 @@ FIXMEs
N: Skipping acquire of configured file 'main/binary-i386/Packages' as
repository 'https://deb.taler.net/apt/ubuntu focal-fossa InRelease' doesn't
support architecture 'i386'
+
+ ttn sez: See ``dpkg --remove-architecture`` hack above.