0

我通过首先构建包然后安装它在archlinux kde中安装了sun-java。这是在我的机器中设置环境变量的方式: file: /etc/profile # /etc/profile

#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 设置正确。我面临这个问题的任何原因?

4

2 回答 2

0

实际上,这对我来说是一个愚蠢的错误。我正在使用 zsh 外壳。所以我被要求输入:

    export PATH=$PATH:$JAVA_HOME/bin 

在 .zshrc 文件而不是 .bashrc 中。

于 2012-05-06T21:14:27.107 回答
0

/etc/profile 和 /etc/profile.d 仅针对登录 shell进行处理,因此除非您对安装了 java 的机器执行 ssh 操作,否则您将不会获得这些变量。

要将它们放在本地(例如,当您在工作站上打开 xterm 时)将它们放在文件 /etc/bash.bashrc 中。

希望这可以帮助。

于 2012-05-04T21:35:36.090 回答