Created
July 27, 2017 08:11
-
-
Save kostyay/dfbdb0d16b2cb256b67bf9176541b1fc to your computer and use it in GitHub Desktop.
How to get Foxit Reader to run on Fedora 26
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cd ~/opt/foxitsoftware/foxitreader | |
ln -s /lib64/libssl.so.10 lib/libssl.so.1.0.0 | |
ln -s /lib64/libcrypto.so.10 lib/libcrypto.so.1.0.0 |
This worked for Fedora 27 as well!
Thank you!
Still works on Fedora 28. Thanks!
Thank you very much!
Works on Fedora 28. Thanks a lot!
Didn't work on Fedora 29.
But removing the existing files from foxitreader and linking seems to work:
cd ~/opt/foxitsoftware/foxitreader
rm lib/libssl.so.10
rm lib/libcrypto.so.10
ln -s /lib64/libssl.so.10 lib/libssl.so.10
ln -s /lib64/libcrypto.so.10 lib/libcrypto.so.10
Didn't work on Fedora 29.
But removing the existing files from foxitreader and linking seems to work:
cd ~/opt/foxitsoftware/foxitreader
rm lib/libssl.so.10
rm lib/libcrypto.so.10
ln -s /lib64/libssl.so.10 lib/libssl.so.10
ln -s /lib64/libcrypto.so.10 lib/libcrypto.so.10
I'm using Fedora 29 and this worked for me.
Thanks!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks a lot !