From fabe23767e95a82301af3af473dd87831271f095 Mon Sep 17 00:00:00 2001 From: mikisoq Date: Wed, 29 Jul 2026 02:08:10 -0100 Subject: [PATCH] Add Fedora/RHEL to prereqs and cert trust docs --- README.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index bd5ac37..34a6bfd 100644 --- a/README.md +++ b/README.md @@ -34,6 +34,12 @@ sudo pacman -S dotnet-sdk-8.0 sudo apt install dotnet-sdk-8.0 ``` +### Linux (Fedora / RHEL) + +```bash +sudo dnf install dotnet-sdk-8.0 +``` + ### macOS ```bash @@ -74,13 +80,17 @@ On Windows, you can also open the folder in Visual Studio and run from there. ### Linux ```bash -# Arch / CachyOS — place root CA and run: +# Arch / CachyOS: sudo cp your-root-ca.crt /etc/ca-certificates/trust-source/anchors/ sudo trust extract-compat # Ubuntu / Debian: sudo cp your-root-ca.crt /usr/local/share/ca-certificates/ sudo update-ca-certificates + +# Fedora / RHEL: +sudo cp your-root-ca.crt /etc/pki/ca-trust/source/anchors/ +sudo update-ca-trust ``` ### Windows