Hi.
On Mon, 11 Mar 2024 00:12:04 -0700 ToddAndMargo via users wrote:
# ldd /bin/marble | sort
This sort may be confusing.
/bin/marble: /lib64/libQt5Gui.so.5: version `Qt_5.15.3_PRIVATE_API' not found (required by /usr/lib64/qt5-qtwebengine-freeworld/libQt5WebEngineCore.so.5)
This lib is probably the culprit.
What RPM provides it ?
rpm -qf /usr/lib64/qt5-qtwebengine-freeworld/libQt5WebEngineCore.so.
More generally, check that all the libs reported by ldd of marble are fc39 ones. For example with:
rpm -qf $(ldd /usr/bin/marble \ | awk '/=>/ { print $3 }') \ | sort -u \ | grep -v fc39 <nothing>