zumengwhynot
2015-10-07 10:22
老师,我用的是ubuntu14.0,每次开机后都会提示etc/profile export命令未找到,请问这个是什么原因啊,百度了好久都没有找到合适的解决方法
配置环境变量出错了,你把 /etc/profile 这个文件的内容发上来看看呐
问题解决了,太粗心啦
哦哦,多谢啦。那个没有玩过这个社区。多谢指点啦
export 。。。。。
" exprot JAVA_HOME=/usr/local/java/jdk1.7.0_60 "
# /etc/profile: system-wide .profile file for the Bourne shell (sh(1))
# and Bourne compatible shells (bash(1), ksh(1), ash(1), ...).
if [ "$PS1" ]; then
if [ "$BASH" ] && [ "$BASH" != "/bin/sh" ]; then
# The file bash.bashrc already sets the default PS1.
# PS1='\h:\w\$ '
if [ -f /etc/bash.bashrc ]; then
. /etc/bash.bashrc
fi
else
if [ "`id -u`" -eq 0 ]; then
PS1='# '
else
PS1='$ '
fi
fi
fi
# The default umask is now handled by pam_umask.
# See pam_umask(8) and /etc/login.defs.
if [ -d /etc/profile.d ]; then
for i in /etc/profile.d/*.sh; do
if [ -r $i ]; then
. $i
fi
done
unset i
fi
#set java enviroment
exprot JAVA_HOME=/usr/local/java/jdk1.7.0_60
export JRE_HOME=/usr/local/java/jdk1.7.0_60/jre
export CLASSPATH=.:$JAVA_HOME/lib:$JRE_HOME/lib:$CLASSPATH
export PATH=$JAVA_HOME/bin:$JRE_HOME/bin:$PATH
Linux达人养成计划 I
399344 学习 · 3791 问题
相似问题