diff --git a/wiki/Troubleshooting.md b/wiki/Troubleshooting.md
index b6079239..2c799304 100644
--- a/wiki/Troubleshooting.md
+++ b/wiki/Troubleshooting.md
@@ -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
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
[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
- 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
- impact other applications.
+ currently breaks Recyclarr. See issue [#54] for more details.
- 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`
- > `sudo dpkg -i libssl1.1_1.1.1l-1ubuntu1.2_amd64.deb`
+ * On Ubuntu 22.04 x64 (64-bit) run the following commands in the shell
- 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`
- > `sudo dpkg -i libssl1.1_1.1.1l-1ubuntu1.2_i386.deb`
+ * On Ubuntu 22.04 x86 (32-bit) run the following commands in the shell
- 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
[#54]: https://github.com/rcdailey/trash-updater/issues/54