리눅스에 자바를 깔려고 고심하고 있습니다.
선자바에서 메뉴얼을 보고 설치하는데 이해가 안가는 부분이 있어서 글을
올립니다.
메뉴얼 중 이해가 잘않가는 부분입니다.
제발 도와주세요! 부탁드립니다.
For C shell (csh), edit the startup file (~/.cshrc):
set path=(/usr/local/jdk1.2.2/bin $path)
For ksh, bash or sh, edit the profile file (~/.profile):
PATH=/usr/local/jdk1.2.2/bin:$PATH
Then load the startup file and verify that the path is set
by repeating the "which" command above:
For C shell (csh):
% source ~/.cshrc
% which java
For ksh, bash or sh:
$ . $HOME/.profile