Skip to content

Instantly share code, notes, and snippets.

@rahulkumar-aws
Created June 7, 2018 18:55
Show Gist options
  • Select an option

  • Save rahulkumar-aws/f0da3ea0b96885662f036a912ecb85ac to your computer and use it in GitHub Desktop.

Select an option

Save rahulkumar-aws/f0da3ea0b96885662f036a912ecb85ac to your computer and use it in GitHub Desktop.
Sample Ubuntu packages setup
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