Un article interressant concernant l'installation de certificat sous linux.
cela m'a été très utile pour installer le certificat de github ;)
mkdir -p ~/.cert/github.com
openssl s_client -showcerts -connect github.com:443 2>&1 | sed -e 's/.-----BEGIN CERTIFICATE-----//g' | sed -e 's/-----END CERTIFICATE-----.//g' > ~/.cert/github.com.pem
;)