The reason netscape crashes is that it uses the libc version of malloc. If
you tell it to use gnumalloc instead it will not crash. My netscape is
actually a wrapper script:
#!/bin/sh
export CLASSPATH="/usr/local/netscape/java/classes/java_30:."
export LD_PRELOAD="/lib/gnumalloc.so"
/usr/local/bin/netscape3
You can get this information (and gnumalloc.so) from www.blackdown.org in
the java-linux FAQ. Hope this helps you guys :>
-Stephen