Java Download wget http://download.oracle.com/otn-pub/java/jdk/6u33-b04/jdk-6u33-linux-i586.bin
Create a bash script to set JAVA_HOME and add Java executables to the path.
vim /etc/profile.d/java.sh
export JAVA_HOME=/opt/jdk1.6.0_26/ export PATH=$JAVA_HOME/bin:$PATH
5. Source you new script so exports take effect
source /etc/profile.d/java.sh
6. Setup Java to be used by the alternatives system (if you want, or if you have an existing install […]
Recent Comments