|
发表于 2005-4-15 10:03:20
|
显示全部楼层
Post by greenwoodboy
那一般情况下,用apt-get 安装jdk后,他的环境变量设置是在那个位置的?
/etc/profile.d/,这个目录ubuntu有没有?有的话应该在这里。
/etc/profile里这一段读取/etc/profile.d里的脚本,然后执行它:
# load profiles from /etc/profile.d
# (to disable a profile, just remove execute permission on it)
for profile in /etc/profile.d/*.sh; do
if [ -x $profile ]; then
. $profile
fi
done |
|