So, I got myself Mount & Blade: Warband from GOG, but when I want to start it, I get something like:
error while loading shared libraries: libcurl-gnutls.so.4: cannot open shared object file: No such file or directoryI already searched for the Fedora respective version of libqt5widgets5 and found out it should be:
qt5-qtbase-gui and qt5-qtbase
How can I start the game?
1 Answer
At first you need to install qt5-qtbase-gui and qt5-qtbase
do that with:
sudo dnf install qt5-qtbase-gui
sudo dnf install qt5-qtbaseAlso make sure you have libcurl installed, if not install that, too.
The solution for:
error while loading shared libraries: libcurl-gnutls.so.4: cannot open shared object file: No such file or directoryI found here. So just do:
sudo ln -s /usr/lib64/libcurl.so.4 /usr/lib64/libcurl-gnutls.so.4 3