Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 |
Tags
- JavaScript
- maVen
- Windows 10
- netsh
- web.xml
- 네트워크
- import
- tomcat
- context
- vscode
- bash
- ssh
- IntelliJ
- Source
- plugin
- GIT
- 단축키
- 줄바꿈 문자
- VirtualBox
- port
- lsof
- xargs
- Mac
- Eclipse
- Windows
- Quartz
- profile
- resource
- grep
- find
Archives
- Today
- Total
develog
[centos 8] jdk 설치 본문
JDK download (tar.gz) | 폴더생성 /usr/local/java 폴더이동 cd /usr/local/java 다운로드 jdk-11.0.8_linux-x64_bin.tar 압축해제 tar xvf jdk-11.0.8_linux-x64_bin.tar 폴더이동 cd jdk-11.0.8 |
환경변수 등록 | vi ~/.bash_profile export JAVA_HOME=/usr/local/java/jdk-11.0.8 export PATH=$PATH:$JAVA_HOME/bin |
쉘에 적용 | source .bash_profile |
실행되는지 확인 | java -version javac -version |
Comments