I am getting the exact same error as the guy above. Seems the issue is enders client cant see my glueten-rt libs. I don't know whether this is because all libs are called lib(name).so in
linux or they arent installed yet or something (i've searched package manager but nothing in there)... But i've tried every suggestion inside and out these forums to no avail.
FYI : I run openSUSE
I did some research on the java.library.path and modified my launcher to define it with
-Djava.library.path=/path/to/client
I also tried defining that as my /usr/jvm/libs path but neither work.
I tried renaming the libs to something similar to whats already in the /usr/libs folder but that just threw different 'file not found' errors.
Any one have any ideas at all ?
BTW This is my launcher..
- Code: Select all
java -Djava.library.path=/home/USER/games/hnh/ -Xms256m -Xmx512m -jar /home/USER/games/hnh/haven.jar -d moltke.seatribe.se -r ./res
- Code: Select all
ladmin@Locogamer ~/Arbeitsfläche/HnH $ ./run.sh
Exception in thread "Haven main thread" java.lang.UnsatisfiedLinkError: no gluegen-rt in java.library.path
at java.lang.ClassLoader.loadLibrary(Unknown Source)
at java.lang.Runtime.loadLibrary0(Unknown Source)
at java.lang.System.loadLibrary(Unknown Source)
at com.sun.gluegen.runtime.NativeLibLoader.loadLibraryInternal(NativeLibLoader.java:91)
at com.sun.gluegen.runtime.NativeLibLoader.access$000(NativeLibLoader.java:50)
at com.sun.gluegen.runtime.NativeLibLoader$1.run(NativeLibLoader.java:69)
at java.security.AccessController.doPrivileged(Native Method)
at com.sun.gluegen.runtime.NativeLibLoader.loadGlueGenRT(NativeLibLoader.java:67)
at com.sun.gluegen.runtime.NativeLibrary.ensureNativeLibLoaded(NativeLibrary.java:399)
at com.sun.gluegen.runtime.NativeLibrary.open(NativeLibrary.java:163)
at com.sun.gluegen.runtime.NativeLibrary.open(NativeLibrary.java:129)
at com.sun.opengl.impl.x11.DRIHack.begin(DRIHack.java:109)
at com.sun.opengl.impl.x11.X11GLDrawableFactory.<clinit>(X11GLDrawableFactory.java:99)
at java.lang.Class.forName0(Native Method)
at java.lang.Class.forName(Unknown Source)
at javax.media.opengl.GLDrawableFactory.getFactory(GLDrawableFactory.java:111)
at javax.media.opengl.GLCanvas.chooseGraphicsConfiguration(GLCanvas.java:520)
at javax.media.opengl.GLCanvas.<init>(GLCanvas.java:131)
at javax.media.opengl.GLCanvas.<init>(GLCanvas.java:90)
at haven.HavenPanel.<init>(HavenPanel.java:77)
at haven.MainFrame.<init>(MainFrame.java:159)
at haven.MainFrame.main2(MainFrame.java:272)
at haven.MainFrame.access$100(MainFrame.java:52)
at haven.MainFrame$6.run(MainFrame.java:327)
at java.lang.Thread.run(Unknown Source)