1

I've installed free download manager in Ubuntu 22.04 lts. When I click free download manager icon it doesn't open. what is the solution of this problem?

M. Oly Mahmud
  • 23
  • 1
  • 5

1 Answers1

1

The error you will most likely to face when you try to open fdm on terminal through /opt/freedownloadmanager/fdm is:

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

In this case, the missing libcrypto.so.1.1 is part of libssl1.1, which needs to be installed in order to fix the issue which you have to manually install from packages.debian.com. Pick the architecture you want and download it. After that you should install it using (remember to put ur own file name in the command):

sudo dpkg -i [downloaded file's name].deb

Thanks a lot to @JakobWeimar with his answer