06-05-2012, 04:18 PM
Sorry for the dumb question but how should I do that? Thanks in advance?
[need help] ubuntu jpcsp
|
06-05-2012, 04:18 PM
Sorry for the dumb question but how should I do that? Thanks in advance?
I had the same problem, seem that jpcsp don't work with java 7 (both oracle and openjdk) on ubuntu,
if you uninstall it and try with java 6 openjdk or with java 6 sun (with jdk package) everything will work
06-06-2012, 08:24 AM
(06-05-2012, 04:18 PM)wingnux Wrote: Sorry for the dumb question but how should I do that? Thanks in advance?Edit the 2nd line of start-linux-amd64.sh with Code: java -Xmx1024m -XX:MaxPermSize=128m -XX:ReservedCodeCacheSize=64m -Djava.library.path=lib/linux-amd64 "-Dorg.lwjgl.librarypath=$0/../lib/linux-amd64" -jar bin/jpcsp.jar
Always include a complete log file at INFO level in your reports. Thanks! How to post a log
Same error:
Code: wingnux@wingnux-desktop:~/jogos/jpcsp-linux-amd64$ sh start-linux-amd64.sh Edit: Quote:wingnux@wingnux-desktop:~$ locate liblwjgl.so I don't think I have this library on my system and I'd performed a "sudo updatedb" before trying to locate liblwjgl.so.
06-06-2012, 10:07 AM
(06-06-2012, 09:42 AM)wingnux Wrote: Same error:then try to hardcode the absolute path from your system (the path you see when calling "pwd"): Code: java -Xmx1024m -XX:MaxPermSize=128m -XX:ReservedCodeCacheSize=64m -Djava.library.path=lib/linux-amd64 "-Dorg.lwjgl.librarypath=/.../jogos/jpcsp-linux-amd64/lib/linux-amd64" -jar bin/jpcsp.jar
Always include a complete log file at INFO level in your reports. Thanks! How to post a log
06-06-2012, 10:31 AM
Code: wingnux@wingnux-desktop:~/jogos/jpcsp-linux-amd64$ sh start-linux-amd64.sh These are the libs on the jpcsp directory: Quote:wingnux@wingnux-desktop:~/jogos/jpcsp-linux-amd64$ ls ~/jogos/jpcsp-linux-amd64/lib/linux-amd64/ Tried copying liblwjgl64.so to liblwjgl.so and it didn't work either.
have you checked permissions ?
ls -al /jogos/jpcsp-linux-amd64/lib/linux-amd64/ make sure its readable by your user/group if not then chmod 755 -R /jogos/jpcsp-linux-amd64/lib/* if it still fails try ldd /jogos/jpcsp-linux-amd64/lib/linux-amd64/liblwjgl.so see if you are missing anything it needs.
Try Out JPCSP Launcher v1.8.0.4 | How to post a log
06-06-2012, 11:14 AM
Permissions are ok and even after applying chmod -R 755 it still crashes.
Here's the ldd output of liblwjgl64.so: Quote:wingnux@wingnux-desktop:~/jogos/jpcsp-linux-amd64/lib/linux-amd64$ ldd liblwjgl64.so As said before, there's no liblwjgl.so on the lib directory, only liblwjgl64.so.
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
Try Out JPCSP Launcher v1.8.0.4 | How to post a log
06-06-2012, 12:50 PM
From the source code, LWJGL is trying to load liblwjgl64.so and if it fails, it is trying with liblwjgl.so. If that one fails again, it is displaying the error message about liblwjgl.so.
Despite of the error message, the main issue is however that liblwjgl64.so cannot be loaded... at least, this is what I understood from their source code...
Always include a complete log file at INFO level in your reports. Thanks! How to post a log
|
« Next Oldest | Next Newest »
|