How to install the java runtime enviroment in linux?
To run the java applications in linux download the J2SE runtime enviroment (jre) Linux self-extarcting file from http://www.sun.com, make the file executable as root with: chmod a+x jre-1_5_0_05-linux-i586.bin install the file with ./jre-1_5_0_05-linux-i586.bin, open the web browser plugins directory which is in the /usr/lib, make a link to the jre plugin module with: ln -s /path/to/jre1.5.0_05/plugin/i386/ns7/libjavaplugin_oji.so ./ Top