Erro do Ubuntu Gnome após atualizar para o Ubuntu 17.10

0

depois de atualizar o gnome do Ubuntu, eu recebo uma tela preta com uma janela de erro toda vez que eu faço login. Eu posso apenas clicar ok e continuar, mas depois de um mês ignorando isso eu achei que deveria consertá-lo. Alguém capaz de me ajudar?

A janela de erro é assim:

Error found when loading /etc/profile:

Locale: Cannot set LC_ALL to default locale: No such file or directory
Locale: Cannot set LC_ALL to default locale: No such file or directory

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

O arquivo contém estas linhas:

# /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 Sojan Janso 29.03.2018 / 19:51

0 respostas