Skip to content

Instantly share code, notes, and snippets.

@hoangdh
Last active October 29, 2019 14:32
Show Gist options
  • Save hoangdh/feb9f5d96eb72150e04ba61cb4d543fa to your computer and use it in GitHub Desktop.
Save hoangdh/feb9f5d96eb72150e04ba61cb4d543fa to your computer and use it in GitHub Desktop.
Install JAVA on Ubuntu in 2 minutes.
#!/bin/bash
apt-get update
apt-get install openjdk-8-jdk -y
echo "JAVA_HOME=$(which java)" | tee -a /etc/environment
source /etc/environment
echo "\$JAVA_HOME: $JAVA_HOME"
@hoangdh
Copy link
Author

hoangdh commented Oct 29, 2019

How to install?

RUN it and Enjoy!

curl -sL https://gist.githubusercontent.com/hoangdh/feb9f5d96eb72150e04ba61cb4d543fa/raw/145d03325c5b932a411381777844ccbe7752bc2d/openjdk-ubuntu.sh | bash -

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment