Получение ошибки, в то время как стартовая человечность 14.04

Каждый раз, когда я запускаю свою систему, я получил это сообщение:

Error found when loading /etc/profile:
/etc/profile: line 1: syntax error near unexpected token ('
/etc/profile: line 1:iamgreat# /etc/profile: system-wide.profile file for the Bourne shell(sh(1))'

As a result the session will not be configured correctly You should fix the problem as soon as feasible.

Кто-то может помочь мне устранить эту проблему? Это мое текущее содержание /etc/profile:

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

export JAVA_HOME=/usr/lib/jvm/java-8-oracle 
-1
задан 10 February 2016 в 11:43

2 ответа

Ваш /etc/profile путаница. Даже после удаление случайного iamgreat вначале , sh -n все еще жаловалось на синтаксическую ошибку. После передобавления отступа и санитарии пробела, закончилась ошибка. Вот результат:

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

export JAVA_HOME=/usr/lib/jvm/java-8-oracle

Замена содержание Вашего /etc/profile с упомянутым выше кодом (например, с gksu gedit /etc/profile) и необходимо быть хорошими снова.

P.S.: /etc/environment лучшее место, чем /etc/profile для глобальных переменных среды как JAVA_HOME (видьте строку в последний раз).

2
ответ дан 29 September 2019 в 12:32
iamgreat# /etc/profile: system-wide .profile file for the Bourne shell (sh(1)) 

у Вас не должно быть этого iamgreat там. Удалите его. Можно использовать эту команду, чтобы сделать так:

sudo sed -i '1s/^iamgreat//' /etc/profile

Или использование редактор.

1
ответ дан 29 September 2019 в 12:32

Другие вопросы по тегам:

Похожие вопросы: