Obtendo erro ao iniciar o ubuntu 14.04

-1

Toda vez que eu inicio meu sistema, recebo esta mensagem:

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.

Alguém por favor pode me ajudar a corrigir esse problema? Estes são meus conteúdos atuais de /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 
    
por Ashutosh 09.02.2016 / 05:37

2 respostas

2

Seu /etc/profile é uma bagunça. Mesmo após a remoção do iamgreat do início , sh -n ainda reclamava de um erro de sintaxe. Após a reentrada e saneamento do espaço em branco, o erro desapareceu. Aqui está o resultado:

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

Substitua o conteúdo do seu /etc/profile pelo código listado acima (por exemplo, com gksu gedit /etc/profile ) e você deve estar bem novamente.

P.S .: /etc/environment é um local melhor que /etc/profile para variáveis de ambiente globais como JAVA_HOME (consulte a última linha).

    
por David Foerster 10.02.2016 / 09:42
1
% bl0ck_qu0te%

Você não deveria ter esse iamgreat lá. Remova. Você pode usar este comando para fazer isso:

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

Ou use um editor.

    
por muru 10.02.2016 / 08:39