유용한 정보/리눅스 관련
리눅스에서 환경변수 설정하기 (How to set the environment variable on Linux)
Jyui
2014. 10. 7. 16:12
# Edit the profile
$vi /etc/profile
# Write down the environment variable with vi editor, and then save
JAVA_HOME=/usr/lib/jvm/jdk1.6.0_45
export $JAVA_HOME
PATH=$PATH:$JAVA_HOME/bin
# Apply the profile
$source /etc/profile
Link : http://blog.naver.com/blueday9404?Redirect=Log&logNo=220143471554