archlinux kdeにsun-javaをインストールしました。まず、パッケージをビルドしてインストールします。 ファイル:/ etc/profileを #/ etc/profileをjdkのPATH変数を設定できません
#Set our umask
umask 022
# Set our default path
PATH="/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin"
export PATH
# Load profiles from /etc/profile.d
if test -d /etc/profile.d/; then
for profile in /etc/profile.d/*.sh; do
test -r "$profile" && . "$profile"
done
unset profile
fi
# Source global bash config
if test "$PS1" && test "$BASH" && test -r /etc/bash.bashrc; then
. /etc/bash.bashrc
fi
# Termcap is outdated, old, and crusty, kill it.
unset TERMCAP
# Man is much better than us at figuring this out
unset MANPATH
とファイル:/etc/profile.d/jdk.sh
export J2SDKDIR=/opt/java
export PATH=$PATH:/opt/java/bin:/opt/java/db/bin
export JAVA_HOME=/opt/java
export DERBY_HOME=/opt/java/db
これは、環境変数が私のマシンに設定されている方法です
私はこのことから理解していますが、パス環境変数にjdkパスを設定する必要があります。しかし、属性$ JAVA_HOMEが正しく設定されています。なぜこの問題に直面しているのですか?
あなたのPATH =/opt/javaにまず/ usr/binにインストールされている他の方が優先されます。 – kofemann
@geeky_sh 'echo $ PATH'の出力は何ですか? –
echo $ path /home/absolute/.rvm/gems/ruby1.9.3p0/bin:/home/absolute/.rvm/gems/[email protected]/bin:/home/absolute/.rvm/rubies /ruby1.9.3p0/bin:/home/absolute/.rvm/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/usr /bin/core_perl:/home/absolute/.rvm/bin –