Could you please update your Linux version to take any version of libssl and libcrypto. (Have it look for libcrypto.so/libssl.so without a version number). The game works with updated versions, but refuses to launch unless linked as the specific 1.0.0 version in /usr/lib.
Viewing post in Cook, Serve, Delicious! 2!! comments
Thank you! And seconded, please fix. Specific error for dev:
./NEW_CSD2_PS4Steam: error while loading shared libraries: libcrypto.so.1.0.0: cannot open shared object file: No such file or directory
Same for libssl. Additionally the game seems to run at least 100x too fast.
Fix for others:
```
cd /usr/lib
sudo ln -s /lib/x86_64-linux-gnu/libcrypto.so.1.1 libcrypto.so.1.0.0
sudo ln -s /lib/x86_64-linux-gnu/libssl.so.1.1 libssl.so.1.0.0
```