ubuntumakefileopenssliscsi

Can't Install Linux* open-iSCSI Initiator


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


Solution

  • 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.)