Error 'while loading shared libraries: libcrypto.so.1.0.0: ...' when running PacketTracer 7 on fedora 25

1

When trying to run the packet tracer in fedora 25 it has the following error.

./PacketTracer7: error while loading shared libraries: libcrypto.so.1.0.0: cannot open shared object file: No such file or directory

Thank you in advance.

    
asked by anonymous 01.04.2017 / 21:59

1 answer

0

Problem solved Just in case someone installs using fedora 25 and gives the same problem follow the steps.

Initially I searched for a folder that has the lib using the following command.

locate libcrypto.so.1.0.0

The only folder you had was /usr/local/lib/warsaw/libcrypto.so.1.0.0

I copied the lib to 2 folders just to secure the lib in the packettracer installation folder using the following command:

sudo cp /usr/local/lib/warsaw/libcrypto.so.1.0.0 /opt/pt/lib 

and also to the / usr / lib folder

sudo cp /usr/local/lib/warsaw/libcrypto.so.1.0.0 /usr/lib

Then I realized that every time I run the packetTracer, it gives a permission problem in a linux daemon, using the fedora "log" tool that comes natively installed, just look at the applications.

The permission command

sudo chmod 755 /etc/rc.d/init.d/warsaw
    
01.04.2017 / 23:22