docs: A bit of reorganizing/reformatting in Troubleshooting.md

pull/64/head
Robert Dailey 3 years ago
parent 27ef0483a3
commit c95e8000de

@ -39,7 +39,7 @@ Below is a list of locations where you can find the log directory depending on p
This means your Base URL is missing from the URL you specified in the YAML. See issue [#42] for This means your Base URL is missing from the URL you specified in the YAML. See issue [#42] for
more details. more details.
* On Ubuntu 22.04 or deriviates when you run 'trash radarr' you will get the following error: * On Ubuntu 22.04 or derivatives when you run `./recyclarr radarr` you will get the following error:
```txt ```txt
[ERR] An exception occurred during git operations on path: /home/REDACTED/.config/trash-updater/repo [ERR] An exception occurred during git operations on path: /home/REDACTED/.config/trash-updater/repo
@ -50,24 +50,31 @@ Below is a list of locations where you can find the log directory depending on p
``` ```
Ubuntu and Fedora moved from libssl 1.1 to libssl 3.0 in version 22.04 and 36 respectively. This Ubuntu and Fedora moved from libssl 1.1 to libssl 3.0 in version 22.04 and 36 respectively. This
currently breaks the updater. currently breaks Recyclarr. See issue [#54] for more details.
See issue [#54] for more details.
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 As a workaround, you can install libssl-1.1 from an earlier version, however, this might impact
other applications. Instructions are below for various platforms. Choose the one that best fits
your scenario.
> `wget http://mirrors.kernel.org/ubuntu/pool/main/o/openssl/libssl1.1_1.1.1l-1ubuntu1.2_amd64.deb`<br/> * On Ubuntu 22.04 x64 (64-bit) run the following commands in the shell
> `sudo dpkg -i libssl1.1_1.1.1l-1ubuntu1.2_amd64.deb`
On Ubuntu 22.04 x86 (32-bit) run the following commands in the shell ```sh
wget http://mirrors.kernel.org/ubuntu/pool/main/o/openssl/libssl1.1_1.1.1l-1ubuntu1.2_amd64.deb
sudo dpkg -i libssl1.1_1.1.1l-1ubuntu1.2_amd64.deb
```
> `wget http://mirrors.kernel.org/ubuntu/pool/main/o/openssl/libssl1.1_1.1.1l-1ubuntu1.2_i386.deb`<br/> * On Ubuntu 22.04 x86 (32-bit) run the following commands in the shell
> `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 ```sh
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
```
> `sudo dnf install openssl1.1` * On Fedora 36 you can simply install the compatibility package included in the default repo
```sh
sudo dnf install openssl1.1
```
[#42]: https://github.com/rcdailey/trash-updater/issues/42 [#42]: https://github.com/rcdailey/trash-updater/issues/42
[#54]: https://github.com/rcdailey/trash-updater/issues/54 [#54]: https://github.com/rcdailey/trash-updater/issues/54

Loading…
Cancel
Save