[Error] Load Shared Library 'libEMuShareMem.so' failed. Error=libEMuShareMem.so: cannot open shared object file: No such file or directory
This error means that it cannot find the file libEMuShareMem.so. Probably the most common reason for this is not having the environment variable LD_LIBRARY_PATH set properly.
In your startup script (or in the shell before you start world) add this command:
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:.
|