0

I am trying to run a program but the program complains that error while loading shared libraries: libQt3Support.so.4: cannot open shared object file: no such file or directory

I can see that the rest of the needed Qt libraries are there, only this one is not found. I did find / -name libQt3Support.so.4 but this didnt return anything... most likely it is missing.

Samer
  • 222
  • 2
    I don't think this is a duplicate of that one. This is a missing library, not a missing repository. Correct me if I'm wrong. – Elder Geek Dec 13 '14 at 18:50
  • 2
    It appears this has been answered here: http://stackoverflow.com/questions/21744542/packet-tracer-libraries-needed-debian – Elder Geek Dec 13 '14 at 18:52
  • 11.10 has long been end of life and no longer supported. By continuing to run it you have been exposing yourself to unpatched security vulnerabilities so you need to upgrade at once. – psusi Dec 16 '14 at 15:15

1 Answers1

4

You need to install the libqt4-qt3support package, which provides that library.

dobey
  • 40,982