Ubuntu – How to build openssh from source

compilingopenssh

I try install OPENssh
./configure

checking for openssl/opensslv.h… no
configure: error: * OpenSSL headers missing

any idea?

Best Answer

I would install the openssh server package if you have a choice apt-get install openssh-server. However if you want to compile from source install openssl first.

Either from source or from the package: apt-get install libssl-dev openssl

Related Question