Two possible approaches (both should work):
1) If you are using SELinux (which is a set of extensions to the kernel, and not a distribution) then you might not be able to load libraries from the current directory.
Create a symlink from /usr/local/lib/libEMuShareMem.so to your eqemu/server/libEMuShareMem.so
and then (as root) run
ldconfig
This will update your linker cache
2) You can also add your eqemu/server/ to the end of /etc/ld.so.conf (as root) and then run ldconfig as above.
If this doesnt fix it, then you need to configure shared memory as shown in the wiki.
|