I've installed Free Download Manager in Ubuntu 22.04 LTS. When I click the Free Download Manager icon, it doesn't open. Is there a solution for this problem?
2 Answers
Sometimes new Ubuntu updates can cause issues for some security features like SSL and TLS for Free Download Manager. I had the same problem and found that installing libxcb-cursor0 fixed it.
You can install libxcb-cursor0 by running the following command in a terminal:
sudo apt install libxcb-cursor0
If this doesn't fix your problem, you can remove the libxcb-cursor0 package by running:
sudo apt remove libxcb-cursor0
- 16,703
- 71
- 1
- 4
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
- 111