Notes

My technical, research, and personal notes.

Access Podman from Another WSL Instance

· 2 min read

When Podman Desktop is installed on Windows, it creates a dedicated WSL distribution called podman-machine-default to run containers. This guide will allow you to configure a separate WSL distribution …

Convert PFX Certificate to Key and CRT Files

· 1 min read

Converting a PFX certificate to separate key and crt files using OpenSSL.

Extract Public Certificate (.crt)

openssl pkcs12 -in domain.pfx -clcerts -nokeys -out domain.crt

You’ll be prompted for …