John Goodall - 2007-03-06

Logged In: YES
user_id=337941
Originator: NO

Please send the output of the following:
uname -a
java -version

Can you try explicitly setting LD_LIBRARY_PATH in the startup script, so change this line:
START_STRING="$JAVA -Djava.library.path=./lib/$SYSTEM $MEMORY $APPLE -jar tnv.jar"
to:
LD_LIBRARY_PATH=./lib/$SYSTEM
START_STRING="$JAVA $MEMORY $APPLE -jar tnv.jar"

I think the problem is that the jpcap native library is not working on your platform. You may have to get the jpcap source and compile it yourself. To do so, download from: http://sourceforge.net/project/showfiles.php?group_id=27207
Build the library on your platform and then copy it into /lib/Linux/

Please let me know.