Excuse my poor English and my ignorance about Ubuntu and Linux world in general.
I just received a .p7b
file in order to connect with a private site through HTTPS. Using MS Windows, I just have to double-click that file and install it, but doing that with Ubuntu pops up a window where I could see all the details of certificate, then there were two buttons: "Close", that is the only one I can press, and "Import", that is gray and therefore useless.
So I searched around the Internet for a solution, then copied the .p7b
file in /usr/local/share/ca-certificates/
and ran update-ca-certificates
with root permission. Nonetheless, if I tried to connect that site, Chrome gives me a NET::ERR_CERT_AUTHORITY_INVALID
. If I run againt update-ca-certificates
, output is still the same it was the first time:
Updating certificates in /etc/ssl/certs...
7 added, 7 removed; done.
Running hooks in /etc/ca-certificates/update.d...
Adding debian:Entrust.net_Secure_Server_CA.pem
Adding debian:GTE_CyberTrust_Global_Root.pem
Adding debian:RSA_Root_Certificate_1.pem
Adding debian:Thawte_Premium_Server_CA.pem
Adding debian:Thawte_Server_CA.pem
Adding debian:ValiCert_Class_1_VA.pem
Adding debian:ValiCert_Class_2_VA.pem
Removing debian:Entrust.net_Secure_Server_CA.pem
Removing debian:GTE_CyberTrust_Global_Root.pem
Removing debian:RSA_Root_Certificate_1.pem
Removing debian:Thawte_Premium_Server_CA.pem
Removing debian:Thawte_Server_CA.pem
Removing debian:ValiCert_Class_1_VA.pem
Removing debian:ValiCert_Class_2_VA.pem
done.
done.
Then I'm totally stuck... can you help me please? Thanks!