iOS jailbreak tool evasi0n on Fedora 18 x86_64
I just wanted to do jailbreak on my iPad3. I’ve grabbed latest version of jailbreak software from evasi0n.com website. Unpacked it, and run, but I’ve got error:
./evasi0n.x86_64: error while loading shared libraries: libssl.so.1.0.0: cannot open shared object file: No such file or directory
So I’ve digged for a while, and find out that I do not have some libraries, however I’ve installed libssl and libcrypt that are necessary to run this jailbreak software. Unfortunatelly Fedora 18 only have openssl in version 1.0.1. So I had to compile openssl v. 1.0.0. Here are the steps:
wget http://www.openssl.org/source/openssl-1.0.0j.tar.gz
tar -zxfv openssl-1.0.0j.tar.gz
cd openssl-1.0.0j
./config -t
make
After that You will have libssl.so.1.0.0 and libcrypto.so.1.0.0 files in this directory. Now You need to copy those files into proper directory in Your system:
cp libssl.so.1.0.0 /usr/lib64/
cp libcrypto.so.1.0.0 /usr/lib64/
And now evansi0n software is running wihtout any problems.
Leave a Reply