View Single Post
  #3  
Old 04-16-2006, 12:54 PM
Belfedia
Demi-God
 
Join Date: Jan 2005
Posts: 1,109
Default

I think with "sudo" commands you use ubuntu ? Your system don't find the lib emusharemem.so library but you have understand.

1- you don't need to start any eqemu files with sudo commands, you can compile source, start and use with user account , and not with command root acces. If this not work try to put good right on file with chmod command (tutorial link : http://catcode.com/teachmod/ ).

2- i'm on debian, i have libEMuShareMem.so in same directory than world, zone and eqlauncher. I use this script for launch world (not a single ./world). It say to system "Hey !! i have also this lib directory" :p
Code:
#!/bin/sh
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:.
./world &
Save it to "worldstart" ,
sudo chmod a+x worldstart (That say all user can run this script).
and you can run your world with ./worldstart command

A friend say about this method "It was very clean !"
Perhaps in ubuntu you need sudo before export, but try first
__________________
__________________________________________________ _____________________________________
I speak english like a spanish cow..., I speak spanish like a english pudding...
But I try to speak good french !!! (Non au langage SMS sur forum)
http://eqfroggy.new.fr : Froggy French Server Website.

Last edited by Belfedia; 04-16-2006 at 09:10 PM..
Reply With Quote