1
0

Update Linux.md

This commit is contained in:
2025-05-07 13:52:22 +02:00
parent 072ac6969c
commit 81b1e38af3

View File

@ -17,4 +17,8 @@ efibootmgr -o 0001
### Download SSL certificate from website ### Download SSL certificate from website
``` ```
openssl s_client -connect www.google.com:443 2>/dev/null </dev/null | sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' openssl s_client -connect www.google.com:443 2>/dev/null </dev/null | sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p'
```
### Import certificate into Java Keystore
```
keytool -importcert -file certificate.cer -keystore keystore.jks -alias "Alias"
``` ```