0

I'm trying to install this version the open-iSCSI Initiator, however when I use the make command, it doesn't find the openssl/evp.h file, but I have the openssl package installed, so I don't get it. What should I do?

Thanks

4

1 回答 1

3

That file isn't part of the openssl package. It's provided by libssl-dev:

sudo apt-get install libssl-dev

It's common in Ubuntu and similar Linux distributions for applications and development libraries/headers to be in different packages. (If you're just going to be using the ssh command or running an ssh server, you don't need the header files.)

于 2016-06-09T22:05:40.897 回答