반응형
$ javac
또는
$ java
를 입력했을 때 Command not found 라는 문구가 출력된다면 java가 설치되지 않은 것이다.
$ sudo apt-get install openjdk-8-jdk
명령어를 입력하면 설치 끝
설치가 잘 되었는지 확인하려면
$ javac -version
또는
$ java -version
를 입력해보면 설치된 버전 정보가 출력된다.
반응형
'Programming' 카테고리의 다른 글
Windows 10 VMWare Workstation and Device/Credential Guard are not compatible 오류 해결방법 (0) | 2020.03.19 |
---|---|
No X11 DISPLAY variable was set, but this program performed an operation which requires it. 해결방법 (2) | 2019.11.22 |
Windows에서 IP 주소 확인하는 방법 (0) | 2019.11.22 |
Ubuntu에서 root 비밀번호 설정하는 방법 (0) | 2019.11.22 |
IntelliJ IDEA에서 terminal을 git bash로 설정하는 방법 (0) | 2019.11.19 |