Created
June 7, 2018 18:55
-
-
Save rahulkumar-aws/f0da3ea0b96885662f036a912ecb85ac to your computer and use it in GitHub Desktop.
Sample Ubuntu packages setup
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
| sudo add-apt-repository ppa:webupd8team/java | |
| sudo apt-get update | |
| ## Java8 | |
| sudo apt-get install oracle-java8-installer | |
| ## Managing Java | |
| sudo update-alternatives --config java | |
| ## Setting the JAVA_HOME Environment Variable | |
| sudo nano /etc/environment | |
| JAVA_HOME="/usr/lib/jvm/java-8-oracle" | |
| source /etc/environment | |
| echo $JAVA_HOME |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment