3

I succesfully installed wireshark 2.6.2, but I can't execute it due to this error

wireshark: error while loading shared libraries: libQt5Core.so.5: cannot open shared object file: No such file or directory

I checked for the library and it is present in my system in /usr/lib/x86_64-linux-gnu/libQt5Core.so.5 but if i do ldd /usr/bin/wireshark i have this output

... libQt5Gui.so.5 => /usr/lib/x86_64-linux-gnu/libQt5Gui.so.5 (0x00007f2764ec6000) libQt5Core.so.5 => not found ...

I have no idea how to tell wireshark to read the library in the correct path. Does anyone could help me ?

Kyrol
  • 1,247

1 Answers1

5

Thanks to this answer and to @Biswapriyo

I succesfully solved my issue by this command

sudo strip --remove-section=.note.ABI-tag /usr/lib/x86_64-linux-gnu/libQt5Core.so.5

Kyrol
  • 1,247