Centos – n equivalent to MySecureShell for Centos

centoschrootsftp

I have some issue to install MySecureShell on CentOS 5.4 because I want to use Yum to install it (for maintainability).
I get this error :

yum install mysecureshell
Error: Missing Dependency: libcrypto.so.10()(64bit) is needed by package mysecureshell-1.20-1.x86_64 (mysecureshell)

I assume that the issue is that openSSL shipped with CentOS 5.4 is too old…

I don't want to install everything manually so I would like to know if there is an equivalent to MySecureShell which would work with CentOS 5.4.

Thanks!


UPDATE :

OpenSSL is correctly installed. However only libcrypto.so.6 is available on my system (due to an old OpenSSL version available in the CentOS repo)

I am using a Fedora 12 repository for MySecureShell

Best Answer

This is expected when trying to install Fedora apps directly in CentOS. This results from Fedora having more up to date apps and libraries.

You have a few of choices:

  1. Install openssl from Fedora and hope it doesn't crash other ssl using apps - NOT RECOMMENDED!

  2. Grab the source rpm from Fedora and build your own package using CentOS's current libraries.

  3. Check one of the CentOS 3rd party repo's and see if mysecureshell is available through one of them.

  4. Check rpmfind or one of its cousins and see if you can get an rpm through them.

If you do find an RPM, make sure it matches your CentOS architecture (32 bit, 64 bit, etc).

Related Topic