Hello Linux fellows,
I have come here to share my experience with a similar problem because I believe that I found a simpler solution than the previous ones (and more elegant than using the Windows build via Wine).
I am running Arch Linux (32 bits) and Cortex Command build 25.
The first time I tried to run CC, it did not even start. If ran from a terminal, I would get the following error :
Code:
$ ./CortexCommand
./CortexCommand.bin: error while loading shared libraries: libssl.so.0.9.8: cannot open shared object file: No such file or directory
The version of openssl installed on my system is 1.0.0.d so I built and installed
openssl-compatibility v0.9.8 from AUR. This PKGBUILD just retrieves libcrypto.so.0.9.8 and libssl.so.0.9.8 from the old openssl package for Arch (32 or 64 bits depending on your system's architecture).
Then, I was able to run CC despite getting the following message in the terminal :
Code:
$ ./.CortexCommand/CortexCommand
./CortexCommand.bin: /usr/lib/libcrypto.so.0.9.8: no version information available (required by ./libs/libcurl.so.4)
./CortexCommand.bin: /usr/lib/libssl.so.0.9.8: no version information available (required by ./libs/libcurl.so.4)
Attempting to start ALSA sound driver
Initialized sound against ALSA sound driver.
I just played (not even completed) the tutorial mission but it seems to run fine to me.
Bye