terminal>> java -version
terminal>> sudo apt update
이게 안되네;; 구름 댕같다 ㄹㅇ
terminal>> sudo apt-get install nano
참조 링크: https://jjeongil.tistory.com/1402
terminal>> wget https://services.gradle.org/distributions/gradle-7.1.1-bin.zip -P /tmp
terminal>> sudo unzip -d /opt/gradle /tmp/gradle-7.1.1-bin.zip
terminal>> sudo nano /etc/profile.d/gradle.sh
# /etc/profile.d/gradle.sh
export GRADLE_HOME=/opt/gradle/gradle-7.1.1
export PATH=${GRADLE_HOME}/bin:${PATH}
nano창이 뜨면 아래 두 줄을 복사헤서 gradle.sh에 복붙하면 된다.
terminal>> sudo chmod +x /etc/profile.d/gradle.sh
terminal>> source /etc/profile.d/gradle.sh
terminal>> gradle -v