1

I was trying to follow the step in the tutorial below :

https://aws.amazon.com/kinesis/video-streams/raspberry-pi-tutorial/

I am stuck at step 5 of "Install Software Prerequisites":

Basically, I am supposed to copy a certain file to "/etc/ssl/cert.pem: "

That directory doesn't even exist. I don't get it. As anyone tried this tutorial before? Are we suppose to create a new directory?

Can someone please elaborate for me?

Fritz FABO
  • 23
  • 4

1 Answers1

0

It looks like openssl is not installed. Check with

dpkg -s openssl

and look for the line that reads status. If it does not spell out installed, openssl needs to be installed. To do that just:

sudo apt-get install openssl

That should include the creation of the required directory structure /etc/ssl.

Ghanima
  • 15,958
  • 17
  • 65
  • 125