what does the directory "/etc/ss/certs" contain? [closed]
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 12 years ago.
Improve this questionI open the directory "/etc/ss/certs". It contains a list of certificates. What are they used for?
Actually, it may be possible to find out this from package system info (it is distribution-specific, though). For instance, for ubuntu/debian you may do the following:
Find out package that owns file/directory of interest:
$ dpkg --search /etc/ssl/certs ca-certificates, openssl, ssl-cert: /etc/ssl/certs
Read package description:
$apt-cache show ca-certificates Package: ca-certificates ... Description: Common CA certificates This package includes PEM files of CA certificates to allow SSL-based applications to check for the authenticity of SSL connections. . It includes, among others, certificate authorities used by the Debian infrastructure and those shipped with Mozilla's browsers. . Please note that certificate authorities whose certificates are included in this package are not in any way audited for trustworthiness and RFC 3647 compliance, and that full responsibility to assess them belongs to the local system administrator.
精彩评论