Add Fedora/RHEL to prereqs and cert trust docs

This commit is contained in:
mikisoq
2026-07-29 02:08:10 -01:00
parent 31d1526ffe
commit 7f950d05ed
+11 -1
View File
@@ -34,6 +34,12 @@ sudo pacman -S dotnet-sdk-8.0
sudo apt install dotnet-sdk-8.0 sudo apt install dotnet-sdk-8.0
``` ```
### Linux (Fedora / RHEL)
```bash
sudo dnf install dotnet-sdk-8.0
```
### macOS ### macOS
```bash ```bash
@@ -74,13 +80,17 @@ On Windows, you can also open the folder in Visual Studio and run from there.
### Linux ### Linux
```bash ```bash
# Arch / CachyOS — place root CA and run: # Arch / CachyOS:
sudo cp your-root-ca.crt /etc/ca-certificates/trust-source/anchors/ sudo cp your-root-ca.crt /etc/ca-certificates/trust-source/anchors/
sudo trust extract-compat sudo trust extract-compat
# Ubuntu / Debian: # Ubuntu / Debian:
sudo cp your-root-ca.crt /usr/local/share/ca-certificates/ sudo cp your-root-ca.crt /usr/local/share/ca-certificates/
sudo update-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 ### Windows