Hope this helps: Hi,
1) You might want to try hard-wiring the CLASSPATH in your runLime.sh, like so:
CLASSPATH="/your/limewire/directory:/your/limewire/directory/collections.jar"
... and so on for the rest of the jar files.
2) Here's a generic runLime.sh that starts up in the correct directory every time, for any user, so you don't have to change it if you move the LimeWire directory...
#!/bin/sh
WD=`dirname $0`
cd $WD
CLASSPATH=".:collections.jar:xerces.jar:jl011.jar"
export CLASSPATH
java -jar RunLime.jar
Hope this helps.
-J. |