Posted October 31, 2024
Hello,
I bought Minit yesterday and it didn't launch. There were two problems to fix. The first problem is it expects old libraries to be present (libcrypto and libssl version 1.0.0). Those libraries are outdated and unsafe to use on system.
Samples of errors you could get:
- ./minitGMS2: error while loading shared libraries: libcrypto.so.1.0.0: cannot open shared object file: No such file or directory
- version `OPENSSL_1.0.0' not found (required by ./minitGMS2)
- ERROR in
action number 1
of Async Event: HTTP
for object oCameraInit
Here is how I managed to make it work, although.
1 - I downloaded the old libraries on Debian Archives. It should work on all Ubuntu⋅s as well, and probably on other distros.
archive.debian.org/debian/pool/main/o/openssl/ (can't put the whole link).
I chose the "libssl1.0.0_1.0.1t-1+deb8u8_amd64.deb" file.
2 - I unpacked this package in a "libssl-old" temporary folder with the "dpkg-deb -x libssl*.deb libssl-old" command. If you don't have dpkg tools, use an archive manager such as "ark" on KDE, "file-roller" on Gnome or "xarchiver" ; you need to extract the "data.tar.xz" content from within the .deb file.
3 - I created a "lib" subdirectory in the installation dir of the game (default = ~/GOG Games/Minit/).
4 - From temporary dir "libssl-old/usr/lib/x86_64-linux-gnu/", I moved the "libcrypto.so.1.0.0" and "libssl.so.1.0.0" to that "lib" subdir.
5 - In the launch script of Minit (default = ~/GOG Games/Minit/start.sh), I inserted before line 8 :
export LD_LIBRARY_PATH="${CURRENT_DIR}/lib:${LD_LIBRARY_PATH}"
6 - I deleted the temporary dir. You should do the same or keep the files in a place other programs won't try to find it.
The second problem is already described by hollunder there:
https://www.gog.com/forum/minit/warning_offline_minit_is_not_offline
I created the ~/.config/minit/camera/camera.ini with the given content and finally it launched!
[camera]
user_url="https://minitgame.com"
api_key="featured_disabled_forever"
I bought Minit yesterday and it didn't launch. There were two problems to fix. The first problem is it expects old libraries to be present (libcrypto and libssl version 1.0.0). Those libraries are outdated and unsafe to use on system.
Samples of errors you could get:
- ./minitGMS2: error while loading shared libraries: libcrypto.so.1.0.0: cannot open shared object file: No such file or directory
- version `OPENSSL_1.0.0' not found (required by ./minitGMS2)
- ERROR in
action number 1
of Async Event: HTTP
for object oCameraInit
Here is how I managed to make it work, although.
1 - I downloaded the old libraries on Debian Archives. It should work on all Ubuntu⋅s as well, and probably on other distros.
archive.debian.org/debian/pool/main/o/openssl/ (can't put the whole link).
I chose the "libssl1.0.0_1.0.1t-1+deb8u8_amd64.deb" file.
2 - I unpacked this package in a "libssl-old" temporary folder with the "dpkg-deb -x libssl*.deb libssl-old" command. If you don't have dpkg tools, use an archive manager such as "ark" on KDE, "file-roller" on Gnome or "xarchiver" ; you need to extract the "data.tar.xz" content from within the .deb file.
3 - I created a "lib" subdirectory in the installation dir of the game (default = ~/GOG Games/Minit/).
4 - From temporary dir "libssl-old/usr/lib/x86_64-linux-gnu/", I moved the "libcrypto.so.1.0.0" and "libssl.so.1.0.0" to that "lib" subdir.
5 - In the launch script of Minit (default = ~/GOG Games/Minit/start.sh), I inserted before line 8 :
export LD_LIBRARY_PATH="${CURRENT_DIR}/lib:${LD_LIBRARY_PATH}"
6 - I deleted the temporary dir. You should do the same or keep the files in a place other programs won't try to find it.
The second problem is already described by hollunder there:
https://www.gog.com/forum/minit/warning_offline_minit_is_not_offline
I created the ~/.config/minit/camera/camera.ini with the given content and finally it launched!
[camera]
user_url="https://minitgame.com"
api_key="featured_disabled_forever"
Post edited October 31, 2024 by ArheuAgaga
No posts in this topic were marked as the solution yet. If you can help, add your reply