# đ Lab RPL Private Certificate Authority
CA Maintainer: iqlal@syntesa.org
## đĒ Windows Users
> [!IMPORTANT]
> Run all command in Powershell Administrator mode
Download Lab RPL Private Root CA file
```powershell
Invoke-WebRequest -Uri "https://object.iqlal.me/root_labrpl.net.pem" -OutFile "root_labrpl.net.pem"
```
Install the Root CA to Trusted Root Store
```powershell
Import-Certificate -FilePath "root_labrpl.net.pem" -CertStoreLocation "Cert:\LocalMachine\Root"
```
## đ MacOS Users
Download Lab RPL Private Root CA file
```bash
curl -o root_labrpl.net.pem "https://object.iqlal.me/root_labrpl.net.pem"
```
Install the Root CA to Trusted Root Store
```bash!
sudo security add-trusted-cert -d -r trustRoot -k /Library/Keychains/System.keychain root_labrpl.net.pem
```
## đ§ Linux Users
Download Lab RPL Private Root CA file
```bash
curl -o root_labrpl.net.pem "https://object.iqlal.me/root_labrpl.net.pem"
```
### âšī¸ For Debian / Ubuntu Based
Move the Root CA to Trusted Store
```bash!
sudo mv root_labrpl.net.pem /usr/local/share/ca-certificates/labrplnet_root.crt
```
Update the CA Store
```bash!
sudo update-ca-certificates
```
### âšī¸ For RPM-based (RHEL, Fedora, OpenSUSE, etc)
Move the Root CA to Trusted Store
```bash!
sudo mv root_labrpl.net.pem /etc/pki/ca-trust/source/anchors/labrplnet_root.pem
```
Update the CA Store
```bash!
sudo update-ca-trust extract
```
### âšī¸ For Arch Based
**just be normal đ**