Forked from filipelenfers/installJdkTarGzUbuntu.sh
Created
November 28, 2022 12:57
-
-
Save augustodossantosti/a272cb0f4c3aa868632c4138dfd3bc60 to your computer and use it in GitHub Desktop.
Install JDK from tar.gz Ubuntu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Login as root | |
sudo su | |
#create jdk directory | |
mkdir /opt/jdk | |
#uncompress, change to your file name | |
tar -zxf jdk-8u5-linux-x64.tar.gz -C /opt/jdk | |
#check if files are there | |
#ls /opt/jdk | |
#update alternatives so the command java point to the new jdk | |
update-alternatives --install /usr/bin/java java /opt/jdk/jdk1.8.0_05/bin/java 100 | |
#update alternatives so the command javac point to the new jdk | |
update-alternatives --install /usr/bin/javac javac /opt/jdk/jdk1.8.0_05/bin/javac 100 | |
#check if java command is pointing to " link currently points to /opt/jdk/jdk1.8.0_05/bin/java" | |
update-alternatives --display java | |
#check if java command is pointing to " link currently points to /opt/jdk/jdk1.8.0_05/bin/javac" | |
update-alternatives --display javac | |
#check if java is running | |
java -version |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment