From 27ef0483a30de6fedf48e699e78fa8479ade9737 Mon Sep 17 00:00:00 2001 From: Andrew Thurman <72708798+nickavem@users.noreply.github.com> Date: Fri, 13 May 2022 14:18:24 -0400 Subject: [PATCH] docs: Add OpenSSL 1.1 Troubleshooting for Fedora 36 Co-authored-by: Andrew Thurman --- wiki/Troubleshooting.md | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/wiki/Troubleshooting.md b/wiki/Troubleshooting.md index bddac1ae..b6079239 100644 --- a/wiki/Troubleshooting.md +++ b/wiki/Troubleshooting.md @@ -49,9 +49,10 @@ Below is a list of locations where you can find the log directory depending on p [1] 257872 segmentation fault (core dumped) ./trash radarr ``` - Ubuntu moved from libssl 1.1 to libssl 3.0 in 22.04. This currently breaks the updater. + Ubuntu and Fedora moved from libssl 1.1 to libssl 3.0 in version 22.04 and 36 respectively. This + currently breaks the updater. See issue [#54] for more details. - As a workaround you can install libssl-1.1 from an earlier version, however, this might + As a workaround, you can install libssl-1.1 from an earlier version, however, this might impact other applications. On Ubuntu 22.04 x64 (64-bit) run the following commands in the shell @@ -64,5 +65,9 @@ Below is a list of locations where you can find the log directory depending on p > `wget http://mirrors.kernel.org/ubuntu/pool/main/o/openssl/libssl1.1_1.1.1l-1ubuntu1.2_i386.deb`
> `sudo dpkg -i libssl1.1_1.1.1l-1ubuntu1.2_i386.deb` + On Fedora 36 you can simply install the compatibility package included in the default repo + + > `sudo dnf install openssl1.1` + [#42]: https://github.com/rcdailey/trash-updater/issues/42 [#54]: https://github.com/rcdailey/trash-updater/issues/54