I am using curl -L | bash -s stable to install RVM. I get an error saying
CAfile: /etc/pki/tls/certs/ca-bundle.crt
CApath: noneI searched a bit on the Internet and found that changing the permissions of /etc/pki/tls/certs/ca-bundle.crt should get the job done. But whole /etc/pki directory is missing from my system. How can I fix it?
2 Answers
On ubuntu/debian, this file is in /etc/ssl/certs/ca-certificates.crt. You could symlink it. The /etc/pki/ path is used on Redhat.
Simply create a ~/.curlrc file.
Then add the following lines to the file:
capath=/etc/ssl/certs/
cacert=/etc/ssl/certs/ca-certificates.crtFeel free to adjust those paths as necessary, as different Linux distributions may use different paths.
(Worked for Ubuntu 14.04).