libssl.so.10: cannot open shared object file: No such file or directory












36















Im trying to use twoBitToFa, which is a small program released by the University of California Santa Cruz, that uncompresses large genome files and I get this error:



error while loading shared libraries: libssl.so.10: cannot open shared object file: No     such file or directory


I tried searching for what package provides it. I switched from Fedora which had yum provides but when looking for the Ubuntu equivalent, I came across apt-file search but when I tried that I got a command not found error.



How can I get this libssl file, and more generally, how can I search for what package provides a file so I can do this by myself in the future?










share|improve this question

























  • You need to install apt-file with sudo apt-get install apt-file and then you need to run sudo apt-get update and sudo apt-get install apt-file and sudo apt-file update.

    – mchid
    yesterday
















36















Im trying to use twoBitToFa, which is a small program released by the University of California Santa Cruz, that uncompresses large genome files and I get this error:



error while loading shared libraries: libssl.so.10: cannot open shared object file: No     such file or directory


I tried searching for what package provides it. I switched from Fedora which had yum provides but when looking for the Ubuntu equivalent, I came across apt-file search but when I tried that I got a command not found error.



How can I get this libssl file, and more generally, how can I search for what package provides a file so I can do this by myself in the future?










share|improve this question

























  • You need to install apt-file with sudo apt-get install apt-file and then you need to run sudo apt-get update and sudo apt-get install apt-file and sudo apt-file update.

    – mchid
    yesterday














36












36








36


10






Im trying to use twoBitToFa, which is a small program released by the University of California Santa Cruz, that uncompresses large genome files and I get this error:



error while loading shared libraries: libssl.so.10: cannot open shared object file: No     such file or directory


I tried searching for what package provides it. I switched from Fedora which had yum provides but when looking for the Ubuntu equivalent, I came across apt-file search but when I tried that I got a command not found error.



How can I get this libssl file, and more generally, how can I search for what package provides a file so I can do this by myself in the future?










share|improve this question
















Im trying to use twoBitToFa, which is a small program released by the University of California Santa Cruz, that uncompresses large genome files and I get this error:



error while loading shared libraries: libssl.so.10: cannot open shared object file: No     such file or directory


I tried searching for what package provides it. I switched from Fedora which had yum provides but when looking for the Ubuntu equivalent, I came across apt-file search but when I tried that I got a command not found error.



How can I get this libssl file, and more generally, how can I search for what package provides a file so I can do this by myself in the future?







shared-library






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited yesterday









mchid

23k25184




23k25184










asked Aug 30 '13 at 14:49









von Misesvon Mises

288138




288138













  • You need to install apt-file with sudo apt-get install apt-file and then you need to run sudo apt-get update and sudo apt-get install apt-file and sudo apt-file update.

    – mchid
    yesterday



















  • You need to install apt-file with sudo apt-get install apt-file and then you need to run sudo apt-get update and sudo apt-get install apt-file and sudo apt-file update.

    – mchid
    yesterday

















You need to install apt-file with sudo apt-get install apt-file and then you need to run sudo apt-get update and sudo apt-get install apt-file and sudo apt-file update.

– mchid
yesterday





You need to install apt-file with sudo apt-get install apt-file and then you need to run sudo apt-get update and sudo apt-get install apt-file and sudo apt-file update.

– mchid
yesterday










6 Answers
6






active

oldest

votes


















46














Lets make sure that you have your SSL installed and updated:



sudo apt-get update
sudo apt-get install libssl1.0.0 libssl-dev


Now lets fix the naming of the file by creating a link:



cd /lib/x86_64-linux-gnu
sudo ln -s libssl.so.1.0.0 libssl.so.10
sudo ln -s libcrypto.so.1.0.0 libcrypto.so.10


And finally, lets inform the developer about this flaw so he can fix it :)






share|improve this answer





















  • 3





    In my case (bedToBigBed from UCSC) I also had to run a similar command for "libcrypto" in addition to the above answer: sudo ln -s /lib/x86_64-linux-gnu/libcrypto.so.1.0.0 /usr/lib/libcrypto.so.10

    – user2821352
    Oct 25 '13 at 16:55






  • 2





    In my case i needed to reinstall the packages. sudo apt-get install libssl1.0.0 libssl-dev --reinstall

    – Edward Wilde
    Jan 9 '17 at 10:30











  • Thanks @EdwardWilde, reinstall seems the easiest! sudo apt-get install libssl1.0.0 libssl-dev --reinstall

    – Stéphane Bruckert
    Jun 26 '18 at 11:21











  • After the apt-get commands, I'm still not seeing any libssl* files in /lib/x86_64-linux-gnu. (Ubuntu 18)

    – MiloDC
    Aug 19 '18 at 0:00











  • are you sure that libssl-dev is needed? It shouldn't probably be..

    – Michel Samia
    Sep 6 '18 at 7:45



















9














Seems that mongo is expecting libssl files in /usr/lib/:



  sudo ln -s /lib/x86_64-linux-gnu/libssl.so.1.0.0 /usr/lib/libssl.so.10
sudo ln -s /lib/x86_64-linux-gnu/libcrypto.so.1.0.0 /usr/lib/libcrypto.so.10





share|improve this answer

































    7














    I am one of the developers of these tools. Our binaries don't support Ubuntu officially (yet). The official way to fix this problem is to recompile from source, which just has gotten extremely simple (see https://github.com/NullModel/kentUtils). We are currently trying to build static binaries without the libssl dependency.






    share|improve this answer































      6














      In my case, I was foolishly using an application compiled for Red Hat Enterprise Linux on my Ubuntu machine. Merely using the Ubuntu version solved the problem.



      This is similar to the lack of support for Ubuntu that Max describes.






      share|improve this answer
























      • Same here. Not absolutely sure this is the primary reason but it might just be. Fyi - software was RoyalRender.

        – bossi
        Oct 25 '15 at 20:16











      • yeah, in my case I downloaded mongo tar.gz for not ubuntu (another Linux). When download mongo see dropdown list on mongo site and choose ubuntu.

        – Maxim Yefremov
        Jul 9 '16 at 7:34






      • 1





        same here... New to Ubuntu... this answer saved me after about 45mins of googling and trials

        – CodeBurner
        May 14 '17 at 21:24











      • Same here. 1 How did the others managed to get it to work? Perhaps they missed the "Ubuntu" reference in the OP? 2 Why would a distro matter? Isn't it compiled against the same architecture?

        – Ryuu
        Jan 8 at 10:13





















      0














      I somehow got my symlinks corrupted when installing a newer version of OpenSSL. To fix this situation, I fixed my symlinks in /usr/lib64. E.g. sudo ln -sf libssl.so.0.9.8e libssl.so.10






      share|improve this answer































        0














        Regarding apt-file, first you have to install it



        sudo apt install apt-file


        and update its cache



        sudo apt-file update


        Then apt-file search some-file should work.



        Regarding the package installations, I think you shouldn't need libssl-dev, you need only libssl1.0.0 - this is the runtime library. The second one is for development






        share|improve this answer






















          protected by Community May 28 '16 at 11:46



          Thank you for your interest in this question.
          Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).



          Would you like to answer one of these unanswered questions instead?














          6 Answers
          6






          active

          oldest

          votes








          6 Answers
          6






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          46














          Lets make sure that you have your SSL installed and updated:



          sudo apt-get update
          sudo apt-get install libssl1.0.0 libssl-dev


          Now lets fix the naming of the file by creating a link:



          cd /lib/x86_64-linux-gnu
          sudo ln -s libssl.so.1.0.0 libssl.so.10
          sudo ln -s libcrypto.so.1.0.0 libcrypto.so.10


          And finally, lets inform the developer about this flaw so he can fix it :)






          share|improve this answer





















          • 3





            In my case (bedToBigBed from UCSC) I also had to run a similar command for "libcrypto" in addition to the above answer: sudo ln -s /lib/x86_64-linux-gnu/libcrypto.so.1.0.0 /usr/lib/libcrypto.so.10

            – user2821352
            Oct 25 '13 at 16:55






          • 2





            In my case i needed to reinstall the packages. sudo apt-get install libssl1.0.0 libssl-dev --reinstall

            – Edward Wilde
            Jan 9 '17 at 10:30











          • Thanks @EdwardWilde, reinstall seems the easiest! sudo apt-get install libssl1.0.0 libssl-dev --reinstall

            – Stéphane Bruckert
            Jun 26 '18 at 11:21











          • After the apt-get commands, I'm still not seeing any libssl* files in /lib/x86_64-linux-gnu. (Ubuntu 18)

            – MiloDC
            Aug 19 '18 at 0:00











          • are you sure that libssl-dev is needed? It shouldn't probably be..

            – Michel Samia
            Sep 6 '18 at 7:45
















          46














          Lets make sure that you have your SSL installed and updated:



          sudo apt-get update
          sudo apt-get install libssl1.0.0 libssl-dev


          Now lets fix the naming of the file by creating a link:



          cd /lib/x86_64-linux-gnu
          sudo ln -s libssl.so.1.0.0 libssl.so.10
          sudo ln -s libcrypto.so.1.0.0 libcrypto.so.10


          And finally, lets inform the developer about this flaw so he can fix it :)






          share|improve this answer





















          • 3





            In my case (bedToBigBed from UCSC) I also had to run a similar command for "libcrypto" in addition to the above answer: sudo ln -s /lib/x86_64-linux-gnu/libcrypto.so.1.0.0 /usr/lib/libcrypto.so.10

            – user2821352
            Oct 25 '13 at 16:55






          • 2





            In my case i needed to reinstall the packages. sudo apt-get install libssl1.0.0 libssl-dev --reinstall

            – Edward Wilde
            Jan 9 '17 at 10:30











          • Thanks @EdwardWilde, reinstall seems the easiest! sudo apt-get install libssl1.0.0 libssl-dev --reinstall

            – Stéphane Bruckert
            Jun 26 '18 at 11:21











          • After the apt-get commands, I'm still not seeing any libssl* files in /lib/x86_64-linux-gnu. (Ubuntu 18)

            – MiloDC
            Aug 19 '18 at 0:00











          • are you sure that libssl-dev is needed? It shouldn't probably be..

            – Michel Samia
            Sep 6 '18 at 7:45














          46












          46








          46







          Lets make sure that you have your SSL installed and updated:



          sudo apt-get update
          sudo apt-get install libssl1.0.0 libssl-dev


          Now lets fix the naming of the file by creating a link:



          cd /lib/x86_64-linux-gnu
          sudo ln -s libssl.so.1.0.0 libssl.so.10
          sudo ln -s libcrypto.so.1.0.0 libcrypto.so.10


          And finally, lets inform the developer about this flaw so he can fix it :)






          share|improve this answer















          Lets make sure that you have your SSL installed and updated:



          sudo apt-get update
          sudo apt-get install libssl1.0.0 libssl-dev


          Now lets fix the naming of the file by creating a link:



          cd /lib/x86_64-linux-gnu
          sudo ln -s libssl.so.1.0.0 libssl.so.10
          sudo ln -s libcrypto.so.1.0.0 libcrypto.so.10


          And finally, lets inform the developer about this flaw so he can fix it :)







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Dec 9 '13 at 22:35









          mmorris

          7502612




          7502612










          answered Aug 30 '13 at 15:20









          Hugo VieiraHugo Vieira

          1,032810




          1,032810








          • 3





            In my case (bedToBigBed from UCSC) I also had to run a similar command for "libcrypto" in addition to the above answer: sudo ln -s /lib/x86_64-linux-gnu/libcrypto.so.1.0.0 /usr/lib/libcrypto.so.10

            – user2821352
            Oct 25 '13 at 16:55






          • 2





            In my case i needed to reinstall the packages. sudo apt-get install libssl1.0.0 libssl-dev --reinstall

            – Edward Wilde
            Jan 9 '17 at 10:30











          • Thanks @EdwardWilde, reinstall seems the easiest! sudo apt-get install libssl1.0.0 libssl-dev --reinstall

            – Stéphane Bruckert
            Jun 26 '18 at 11:21











          • After the apt-get commands, I'm still not seeing any libssl* files in /lib/x86_64-linux-gnu. (Ubuntu 18)

            – MiloDC
            Aug 19 '18 at 0:00











          • are you sure that libssl-dev is needed? It shouldn't probably be..

            – Michel Samia
            Sep 6 '18 at 7:45














          • 3





            In my case (bedToBigBed from UCSC) I also had to run a similar command for "libcrypto" in addition to the above answer: sudo ln -s /lib/x86_64-linux-gnu/libcrypto.so.1.0.0 /usr/lib/libcrypto.so.10

            – user2821352
            Oct 25 '13 at 16:55






          • 2





            In my case i needed to reinstall the packages. sudo apt-get install libssl1.0.0 libssl-dev --reinstall

            – Edward Wilde
            Jan 9 '17 at 10:30











          • Thanks @EdwardWilde, reinstall seems the easiest! sudo apt-get install libssl1.0.0 libssl-dev --reinstall

            – Stéphane Bruckert
            Jun 26 '18 at 11:21











          • After the apt-get commands, I'm still not seeing any libssl* files in /lib/x86_64-linux-gnu. (Ubuntu 18)

            – MiloDC
            Aug 19 '18 at 0:00











          • are you sure that libssl-dev is needed? It shouldn't probably be..

            – Michel Samia
            Sep 6 '18 at 7:45








          3




          3





          In my case (bedToBigBed from UCSC) I also had to run a similar command for "libcrypto" in addition to the above answer: sudo ln -s /lib/x86_64-linux-gnu/libcrypto.so.1.0.0 /usr/lib/libcrypto.so.10

          – user2821352
          Oct 25 '13 at 16:55





          In my case (bedToBigBed from UCSC) I also had to run a similar command for "libcrypto" in addition to the above answer: sudo ln -s /lib/x86_64-linux-gnu/libcrypto.so.1.0.0 /usr/lib/libcrypto.so.10

          – user2821352
          Oct 25 '13 at 16:55




          2




          2





          In my case i needed to reinstall the packages. sudo apt-get install libssl1.0.0 libssl-dev --reinstall

          – Edward Wilde
          Jan 9 '17 at 10:30





          In my case i needed to reinstall the packages. sudo apt-get install libssl1.0.0 libssl-dev --reinstall

          – Edward Wilde
          Jan 9 '17 at 10:30













          Thanks @EdwardWilde, reinstall seems the easiest! sudo apt-get install libssl1.0.0 libssl-dev --reinstall

          – Stéphane Bruckert
          Jun 26 '18 at 11:21





          Thanks @EdwardWilde, reinstall seems the easiest! sudo apt-get install libssl1.0.0 libssl-dev --reinstall

          – Stéphane Bruckert
          Jun 26 '18 at 11:21













          After the apt-get commands, I'm still not seeing any libssl* files in /lib/x86_64-linux-gnu. (Ubuntu 18)

          – MiloDC
          Aug 19 '18 at 0:00





          After the apt-get commands, I'm still not seeing any libssl* files in /lib/x86_64-linux-gnu. (Ubuntu 18)

          – MiloDC
          Aug 19 '18 at 0:00













          are you sure that libssl-dev is needed? It shouldn't probably be..

          – Michel Samia
          Sep 6 '18 at 7:45





          are you sure that libssl-dev is needed? It shouldn't probably be..

          – Michel Samia
          Sep 6 '18 at 7:45













          9














          Seems that mongo is expecting libssl files in /usr/lib/:



            sudo ln -s /lib/x86_64-linux-gnu/libssl.so.1.0.0 /usr/lib/libssl.so.10
          sudo ln -s /lib/x86_64-linux-gnu/libcrypto.so.1.0.0 /usr/lib/libcrypto.so.10





          share|improve this answer






























            9














            Seems that mongo is expecting libssl files in /usr/lib/:



              sudo ln -s /lib/x86_64-linux-gnu/libssl.so.1.0.0 /usr/lib/libssl.so.10
            sudo ln -s /lib/x86_64-linux-gnu/libcrypto.so.1.0.0 /usr/lib/libcrypto.so.10





            share|improve this answer




























              9












              9








              9







              Seems that mongo is expecting libssl files in /usr/lib/:



                sudo ln -s /lib/x86_64-linux-gnu/libssl.so.1.0.0 /usr/lib/libssl.so.10
              sudo ln -s /lib/x86_64-linux-gnu/libcrypto.so.1.0.0 /usr/lib/libcrypto.so.10





              share|improve this answer















              Seems that mongo is expecting libssl files in /usr/lib/:



                sudo ln -s /lib/x86_64-linux-gnu/libssl.so.1.0.0 /usr/lib/libssl.so.10
              sudo ln -s /lib/x86_64-linux-gnu/libcrypto.so.1.0.0 /usr/lib/libcrypto.so.10






              share|improve this answer














              share|improve this answer



              share|improve this answer








              edited Dec 23 '15 at 9:15

























              answered Dec 21 '15 at 15:29









              DziamidDziamid

              2512516




              2512516























                  7














                  I am one of the developers of these tools. Our binaries don't support Ubuntu officially (yet). The official way to fix this problem is to recompile from source, which just has gotten extremely simple (see https://github.com/NullModel/kentUtils). We are currently trying to build static binaries without the libssl dependency.






                  share|improve this answer




























                    7














                    I am one of the developers of these tools. Our binaries don't support Ubuntu officially (yet). The official way to fix this problem is to recompile from source, which just has gotten extremely simple (see https://github.com/NullModel/kentUtils). We are currently trying to build static binaries without the libssl dependency.






                    share|improve this answer


























                      7












                      7








                      7







                      I am one of the developers of these tools. Our binaries don't support Ubuntu officially (yet). The official way to fix this problem is to recompile from source, which just has gotten extremely simple (see https://github.com/NullModel/kentUtils). We are currently trying to build static binaries without the libssl dependency.






                      share|improve this answer













                      I am one of the developers of these tools. Our binaries don't support Ubuntu officially (yet). The official way to fix this problem is to recompile from source, which just has gotten extremely simple (see https://github.com/NullModel/kentUtils). We are currently trying to build static binaries without the libssl dependency.







                      share|improve this answer












                      share|improve this answer



                      share|improve this answer










                      answered Nov 5 '13 at 23:43









                      MaxMax

                      18113




                      18113























                          6














                          In my case, I was foolishly using an application compiled for Red Hat Enterprise Linux on my Ubuntu machine. Merely using the Ubuntu version solved the problem.



                          This is similar to the lack of support for Ubuntu that Max describes.






                          share|improve this answer
























                          • Same here. Not absolutely sure this is the primary reason but it might just be. Fyi - software was RoyalRender.

                            – bossi
                            Oct 25 '15 at 20:16











                          • yeah, in my case I downloaded mongo tar.gz for not ubuntu (another Linux). When download mongo see dropdown list on mongo site and choose ubuntu.

                            – Maxim Yefremov
                            Jul 9 '16 at 7:34






                          • 1





                            same here... New to Ubuntu... this answer saved me after about 45mins of googling and trials

                            – CodeBurner
                            May 14 '17 at 21:24











                          • Same here. 1 How did the others managed to get it to work? Perhaps they missed the "Ubuntu" reference in the OP? 2 Why would a distro matter? Isn't it compiled against the same architecture?

                            – Ryuu
                            Jan 8 at 10:13


















                          6














                          In my case, I was foolishly using an application compiled for Red Hat Enterprise Linux on my Ubuntu machine. Merely using the Ubuntu version solved the problem.



                          This is similar to the lack of support for Ubuntu that Max describes.






                          share|improve this answer
























                          • Same here. Not absolutely sure this is the primary reason but it might just be. Fyi - software was RoyalRender.

                            – bossi
                            Oct 25 '15 at 20:16











                          • yeah, in my case I downloaded mongo tar.gz for not ubuntu (another Linux). When download mongo see dropdown list on mongo site and choose ubuntu.

                            – Maxim Yefremov
                            Jul 9 '16 at 7:34






                          • 1





                            same here... New to Ubuntu... this answer saved me after about 45mins of googling and trials

                            – CodeBurner
                            May 14 '17 at 21:24











                          • Same here. 1 How did the others managed to get it to work? Perhaps they missed the "Ubuntu" reference in the OP? 2 Why would a distro matter? Isn't it compiled against the same architecture?

                            – Ryuu
                            Jan 8 at 10:13
















                          6












                          6








                          6







                          In my case, I was foolishly using an application compiled for Red Hat Enterprise Linux on my Ubuntu machine. Merely using the Ubuntu version solved the problem.



                          This is similar to the lack of support for Ubuntu that Max describes.






                          share|improve this answer













                          In my case, I was foolishly using an application compiled for Red Hat Enterprise Linux on my Ubuntu machine. Merely using the Ubuntu version solved the problem.



                          This is similar to the lack of support for Ubuntu that Max describes.







                          share|improve this answer












                          share|improve this answer



                          share|improve this answer










                          answered Apr 27 '15 at 18:22









                          John McGeheeJohn McGehee

                          16715




                          16715













                          • Same here. Not absolutely sure this is the primary reason but it might just be. Fyi - software was RoyalRender.

                            – bossi
                            Oct 25 '15 at 20:16











                          • yeah, in my case I downloaded mongo tar.gz for not ubuntu (another Linux). When download mongo see dropdown list on mongo site and choose ubuntu.

                            – Maxim Yefremov
                            Jul 9 '16 at 7:34






                          • 1





                            same here... New to Ubuntu... this answer saved me after about 45mins of googling and trials

                            – CodeBurner
                            May 14 '17 at 21:24











                          • Same here. 1 How did the others managed to get it to work? Perhaps they missed the "Ubuntu" reference in the OP? 2 Why would a distro matter? Isn't it compiled against the same architecture?

                            – Ryuu
                            Jan 8 at 10:13





















                          • Same here. Not absolutely sure this is the primary reason but it might just be. Fyi - software was RoyalRender.

                            – bossi
                            Oct 25 '15 at 20:16











                          • yeah, in my case I downloaded mongo tar.gz for not ubuntu (another Linux). When download mongo see dropdown list on mongo site and choose ubuntu.

                            – Maxim Yefremov
                            Jul 9 '16 at 7:34






                          • 1





                            same here... New to Ubuntu... this answer saved me after about 45mins of googling and trials

                            – CodeBurner
                            May 14 '17 at 21:24











                          • Same here. 1 How did the others managed to get it to work? Perhaps they missed the "Ubuntu" reference in the OP? 2 Why would a distro matter? Isn't it compiled against the same architecture?

                            – Ryuu
                            Jan 8 at 10:13



















                          Same here. Not absolutely sure this is the primary reason but it might just be. Fyi - software was RoyalRender.

                          – bossi
                          Oct 25 '15 at 20:16





                          Same here. Not absolutely sure this is the primary reason but it might just be. Fyi - software was RoyalRender.

                          – bossi
                          Oct 25 '15 at 20:16













                          yeah, in my case I downloaded mongo tar.gz for not ubuntu (another Linux). When download mongo see dropdown list on mongo site and choose ubuntu.

                          – Maxim Yefremov
                          Jul 9 '16 at 7:34





                          yeah, in my case I downloaded mongo tar.gz for not ubuntu (another Linux). When download mongo see dropdown list on mongo site and choose ubuntu.

                          – Maxim Yefremov
                          Jul 9 '16 at 7:34




                          1




                          1





                          same here... New to Ubuntu... this answer saved me after about 45mins of googling and trials

                          – CodeBurner
                          May 14 '17 at 21:24





                          same here... New to Ubuntu... this answer saved me after about 45mins of googling and trials

                          – CodeBurner
                          May 14 '17 at 21:24













                          Same here. 1 How did the others managed to get it to work? Perhaps they missed the "Ubuntu" reference in the OP? 2 Why would a distro matter? Isn't it compiled against the same architecture?

                          – Ryuu
                          Jan 8 at 10:13







                          Same here. 1 How did the others managed to get it to work? Perhaps they missed the "Ubuntu" reference in the OP? 2 Why would a distro matter? Isn't it compiled against the same architecture?

                          – Ryuu
                          Jan 8 at 10:13













                          0














                          I somehow got my symlinks corrupted when installing a newer version of OpenSSL. To fix this situation, I fixed my symlinks in /usr/lib64. E.g. sudo ln -sf libssl.so.0.9.8e libssl.so.10






                          share|improve this answer




























                            0














                            I somehow got my symlinks corrupted when installing a newer version of OpenSSL. To fix this situation, I fixed my symlinks in /usr/lib64. E.g. sudo ln -sf libssl.so.0.9.8e libssl.so.10






                            share|improve this answer


























                              0












                              0








                              0







                              I somehow got my symlinks corrupted when installing a newer version of OpenSSL. To fix this situation, I fixed my symlinks in /usr/lib64. E.g. sudo ln -sf libssl.so.0.9.8e libssl.so.10






                              share|improve this answer













                              I somehow got my symlinks corrupted when installing a newer version of OpenSSL. To fix this situation, I fixed my symlinks in /usr/lib64. E.g. sudo ln -sf libssl.so.0.9.8e libssl.so.10







                              share|improve this answer












                              share|improve this answer



                              share|improve this answer










                              answered Nov 27 '17 at 21:28









                              Michael FayadMichael Fayad

                              22327




                              22327























                                  0














                                  Regarding apt-file, first you have to install it



                                  sudo apt install apt-file


                                  and update its cache



                                  sudo apt-file update


                                  Then apt-file search some-file should work.



                                  Regarding the package installations, I think you shouldn't need libssl-dev, you need only libssl1.0.0 - this is the runtime library. The second one is for development






                                  share|improve this answer




























                                    0














                                    Regarding apt-file, first you have to install it



                                    sudo apt install apt-file


                                    and update its cache



                                    sudo apt-file update


                                    Then apt-file search some-file should work.



                                    Regarding the package installations, I think you shouldn't need libssl-dev, you need only libssl1.0.0 - this is the runtime library. The second one is for development






                                    share|improve this answer


























                                      0












                                      0








                                      0







                                      Regarding apt-file, first you have to install it



                                      sudo apt install apt-file


                                      and update its cache



                                      sudo apt-file update


                                      Then apt-file search some-file should work.



                                      Regarding the package installations, I think you shouldn't need libssl-dev, you need only libssl1.0.0 - this is the runtime library. The second one is for development






                                      share|improve this answer













                                      Regarding apt-file, first you have to install it



                                      sudo apt install apt-file


                                      and update its cache



                                      sudo apt-file update


                                      Then apt-file search some-file should work.



                                      Regarding the package installations, I think you shouldn't need libssl-dev, you need only libssl1.0.0 - this is the runtime library. The second one is for development







                                      share|improve this answer












                                      share|improve this answer



                                      share|improve this answer










                                      answered Sep 6 '18 at 7:44









                                      Michel SamiaMichel Samia

                                      44145




                                      44145

















                                          protected by Community May 28 '16 at 11:46



                                          Thank you for your interest in this question.
                                          Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).



                                          Would you like to answer one of these unanswered questions instead?



                                          Popular posts from this blog

                                          How did Captain America manage to do this?

                                          迪纳利

                                          南乌拉尔铁路局