erro etc no Ubuntu ao iniciar o sistema

-1

Ao instalar o Java, fiz algo e agora obtive esse erro.

    
por Srideep Nayak 03.01.2018 / 07:48

1 resposta

0

Faça o backup do seu /etc/profile existente executando sudo cp /etc/profile /etc/profile.bak . Em seguida, edite seu /etc/profile executando sudo nano /etc/profile . Abaixo está minha /etc/profile para comparação com a sua. Você poderia substituir o seu seu /etc/profile por um de um disco ativo ou o abaixo. Se você tiver personalizações nas suas, poderá executar diff /etc/profile /etc/profile.bak para encontrar as diferenças e adicionar as personalizações necessárias e testar cada uma, uma por vez.

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

if [ -d /etc/profile.d ]; then
  for i in /etc/profile.d/*.sh; do
    if [ -r $i ]; then
      . $i
    fi
  done
  unset i
fi
    
por J. Starnes 03.01.2018 / 08:09