问答详情
源自:4-2 Linux中命令搜索命令

老师,我用的是ubuntu14.0,每次开机后都会提示etc/profile export命令未找到,请问这个是什么原因啊,百度了好久都没有找到合适的解决方法

老师,我用的是ubuntu14.0,每次开机后都会提示etc/profile export命令未找到,请问这个是什么原因啊,百度了好久都没有找到合适的解决方法

提问者:zumengwhynot 2015-10-07 10:22

个回答

  • 化龙贝
    2015-10-07 10:50:53
    已采纳

    配置环境变量出错了,你把 /etc/profile 这个文件的内容发上来看看呐

  • zumengwhynot
    2015-10-07 11:22:07

    问题解决了,太粗心啦

  • zumengwhynot
    2015-10-07 11:15:58

    哦哦,多谢啦。那个没有玩过这个社区。多谢指点啦

  • 化龙贝
    2015-10-07 11:02:56

    export 。。。。。

      " exprot JAVA_HOME=/usr/local/java/jdk1.7.0_60 "

  • zumengwhynot
    2015-10-07 10:59:50

    你好,我是初学者,下面是我的/etc/profile/的文件内容,还麻烦你看看呢,还有就是最后是我安装jdk的环境变量,开机时用 java -vesion命令查看不了信息,可是打开/etc/profile/后又可以查看版本信息了。

    # /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