Ошибка при запуске ubuntu 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 в 12:43

1 ответ

iamgreat# /etc/profile: system-wide .profile file for the Bourne shell (sh(1)) 

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

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

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

1
ответ дан 23 May 2018 в 13:40

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

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