EmuNewz Network

Full Version: [need help] ubuntu jpcsp
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3 4
(06-06-2012, 11:41 AM)hyakki Wrote: [ -> ]hm not sure if it will help maybe try making a symbolic link to both filenames (you might need to use full paths)
ln -s liblwjgl64.so liblwjgl.so


you could also try to set the global path
export PATH=$PATH:/jogos/jpcsp-linux-amd64/lib:/jogos/jpcsp-linux-amd64/lib/linux-amd64

Tried both suggestions and still nothing =/

Code:
wingnux@wingnux-desktop:~/jogos/jpcsp-linux-amd64$ sh start-linux-amd64.sh
Exception in thread "GUI" java.lang.UnsatisfiedLinkError: /home/wingnux/jogos/jpcsp-linux-amd64/lib/linux-amd64/liblwjgl64.so: libjawt.so: cannot open shared object file: No such file or directory
        at java.lang.ClassLoader$NativeLibrary.load(Native Method)
        at java.lang.ClassLoader.loadLibrary1(ClassLoader.java:1939)
        at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1864)
        at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1825)
        at java.lang.Runtime.load0(Runtime.java:792)
        at java.lang.System.load(System.java:1059)
        at org.lwjgl.Sys$1.run(Sys.java:70)
        at java.security.AccessController.doPrivileged(Native Method)
        at org.lwjgl.Sys.doLoadLibrary(Sys.java:66)
        at org.lwjgl.Sys.loadLibrary(Sys.java:82)
        at org.lwjgl.Sys.<clinit>(Sys.java:99)
        at org.lwjgl.opengl.AWTGLCanvas.<clinit>(AWTGLCanvas.java:85)
        at jpcsp.HLE.Modules.<clinit>(Modules.java:150)
        at jpcsp.MainGUI.<init>(MainGUI.java:167)
        at jpcsp.MainGUI$56.run(MainGUI.java:2093)
        at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:251)
        at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:701)
        at java.awt.EventQueue.access$000(EventQueue.java:102)
        at java.awt.EventQueue$3.run(EventQueue.java:662)
        at java.awt.EventQueue$3.run(EventQueue.java:660)
        at java.security.AccessController.doPrivileged(Native Method)
        at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:76)
        at java.awt.EventQueue.dispatchEvent(EventQueue.java:671)
        at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:244)
        at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:163)
        at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:151)
        at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:147)
        at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:139)
        at java.awt.EventDispatchThread.run(EventDispatchThread.java:97)
(06-06-2012, 12:54 PM)wingnux Wrote: [ -> ]Tried both suggestions and still nothing =/

Code:
wingnux@wingnux-desktop:~/jogos/jpcsp-linux-amd64$ sh start-linux-amd64.sh
Exception in thread "GUI" java.lang.UnsatisfiedLinkError: /home/wingnux/jogos/jpcsp-linux-amd64/lib/linux-amd64/liblwjgl64.so: libjawt.so: cannot open shared object file: No such file or directory
        at java.lang.ClassLoader$NativeLibrary.load(Native Method)
        at java.lang.ClassLoader.loadLibrary1(ClassLoader.java:1939)
        at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1864)
        at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1825)
        at java.lang.Runtime.load0(Runtime.java:792)
        at java.lang.System.load(System.java:1059)
        at org.lwjgl.Sys$1.run(Sys.java:70)
        at java.security.AccessController.doPrivileged(Native Method)
        at org.lwjgl.Sys.doLoadLibrary(Sys.java:66)
        at org.lwjgl.Sys.loadLibrary(Sys.java:82)
        at org.lwjgl.Sys.<clinit>(Sys.java:99)
        at org.lwjgl.opengl.AWTGLCanvas.<clinit>(AWTGLCanvas.java:85)
        at jpcsp.HLE.Modules.<clinit>(Modules.java:150)
        at jpcsp.MainGUI.<init>(MainGUI.java:167)
        at jpcsp.MainGUI$56.run(MainGUI.java:2093)
        at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:251)
        at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:701)
        at java.awt.EventQueue.access$000(EventQueue.java:102)
        at java.awt.EventQueue$3.run(EventQueue.java:662)
        at java.awt.EventQueue$3.run(EventQueue.java:660)
        at java.security.AccessController.doPrivileged(Native Method)
        at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:76)
        at java.awt.EventQueue.dispatchEvent(EventQueue.java:671)
        at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:244)
        at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:163)
        at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:151)
        at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:147)
        at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:139)
        at java.awt.EventDispatchThread.run(EventDispatchThread.java:97)
Making good progress: now it is finding and loading the liblwjgl64.so, but it doesn't find libjawt.so

I found the following hint:
http://askubuntu.com/questions/43793/how...y-launcher

Code:
for 64bit with oracle java 7

if you experience this problem: libjawt.so cannot open shared object file no such file

do this: sudo ldconfig /usr/lib/jvm/java-7-oracle/jre/lib/amd64/
ok if you want keep java 7, do this:
download lwjgl 2.8.4 and replace, in lib and lib/linux-amd64 folders, libjinput-linux64.so,liblwjgl64.so,libopenal64.so,jinput.jar,lwjgl.jar and lwjgl_util.jar,
use the unmodified start-linux-amd64.sh and everything will work
(05-18-2012, 08:24 PM)hyakki Wrote: [ -> ]The only way the launcher will work in linux is with wine, and then java being installed in wine, then using the 32 bit windows jpcsp.. even after all that Im not sure the opengl part of java will work correctly under wine.

you might want to try the native linux builds
http://buildbot.orphis.net/jpcsp/
then just type
./start-linux-x86.sh
or
java -Xmx514m -Djava.library.path=lib/linux-x86 -jar bin/jpcsp.jar
under the jpcsp directory
And wht would u do for windows7 32bit
(01-05-2013, 09:05 PM)major.newb Wrote: [ -> ]And wht would u do for windows7 32bit

1. Install 32bit Java
2. get the latest the jpcsp build here http://buildbot.orphis.net/jpcsp/
and extract the archive,
3. run the .bat file or copy the Jpcsp launcher to the directory and run.

for more info check this thread, JPCSP for dummies
i have been having some trouble with jpcsp it says "GUI" java.lang.UnsatisfiedLinkError: no lwjgl in java.library.path
i have read the form and tried everything you said along with others i have seen and dont know what to do.... could really use some help please... i have windows 7
Pages: 1 2 3 4