I have the CA certificate on my mac book but I need to send it to my ubuntu laptop so I can access school wifi. How would I go about it?
Asked
Active
Viewed 188 times
2
-
These two questions and answers may be useful: 1. Constantly asked for WiFi password and CA certificate and 2. How can I fix my WPA-EAP certificate problem?. – user68186 May 10 '23 at 15:35
-
1Can't you use a USB drive? – liakoyras May 10 '23 at 16:08
1 Answers
3
You're not telling us your version of Ubuntu, but I'm trusting it's recent enough so that the current set of instructions on the official Ubuntu documentation are sufficient.
You can find it here: https://ubuntu.com/server/docs/security-trust-store
It includes both the installation and the conversion if it is passed to you in a different format.
In the former case, what you need to is run the following in a terminal window:
$ sudo apt-get install -y ca-certificates
$ sudo cp <your_school_certificate_file> /usr/local/share/ca-certificates
$ sudo update-ca-certificates
If there are errors, which can refer to the file being in a wrong format (e.g. DER, when it must be in PEM), you can attempt to resolve it by formatting the file, again, in the terminal:
$ sudo openssl x509 -inform der -outform pem -in <your_school_certificate_file.der> -out <your_school_certificate_file.crt>

Janne Jokitalo
- 159
-
1Looks much better now. Also, these comments might get deleted, since they are merely "chat" - but again please come to meta or the chatroom if you seek any clarification. – Artur Meinild May 10 '23 at 16:00
-