Skip to content

Instantly share code, notes, and snippets.

@jjangga0214
Last active October 17, 2018 04:38
Show Gist options
  • Save jjangga0214/0f57fc5a009822fc9d80ad2f870cfb91 to your computer and use it in GitHub Desktop.
Save jjangga0214/0f57fc5a009822fc9d80ad2f870cfb91 to your computer and use it in GitHub Desktop.
[jdk on ubuntu] #jdk #ubuntu #java #linux

jdk on ubuntu

현재 설치된 버전 확인, 변경, 색 및 설치

# 현재 설치된 버전 확인 및
# 이후 나타난 interactive console 에서 번호를 선택하여 앞으로 시스템에서 사용할 jdk 를 고를 수 있다. 
update-alternatives --config java

# jdk 검색 
apt search openjdk
 
# jdk 설치
sudo apt update && apt-get install openjdk-11-jdk

주의

ubuntu 의 repo 에서 제공하는 openjdk (openjdk-11-jdk 등) 의 버저닝은 실제 java 의 버전과 다를 수 있다.
예를 들어 현재 시점으로 openjdk-11-jdk 은 java 10 이다.

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