# 🔐 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 😋**