Linux一般ユーザーJDK環境のインストール
1034 ワード
二ヶ月もやらないで、忘れて、覚えて、頭...
一、ソフトウェア環境
1.centOS 7.x
2.JDK1.8
二、具体的な過程
1.xiaomingなどの自分のユーザーに切り替える
2.ユーザのルートディレクトリに入り、編集する.bash_プロファイルファイル
変更内容:
保存後、sourceをクリックします.
テスト
一、ソフトウェア環境
1.centOS 7.x
2.JDK1.8
二、具体的な過程
1.xiaomingなどの自分のユーザーに切り替える
2.ユーザのルートディレクトリに入り、編集する.bash_プロファイルファイル
> vim .bash_profile
変更内容:
# .bash_profile
# Get the aliases and functions
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
# User specific environment and startup programs
JAVA_HOME=/home/xiaoming/jdk/jdk1.8.0_171
CLASSPATH=.:$JAVA_HOME/bin/tools.jar
PATH=$JAVA_HOME/bin:$PATH
export CLASSPATH PATH
~
~
~
保存後、sourceをクリックします.
> source .bash_profile
テスト
> echo $JAVA_HOME