O que locale
mostra?
Se mostrar "LC_ALL" definido como um valor, talvez seja necessário unset
.
unset LC_ALL
Em seguida, tente:
export LANG="en_US.UTF-8"
export LC_COLLATE="C"
export LC_TIME="en_US.UTF-8"
Se funcionar, adicione essas exportações ao seu arquivo ~/.bashrc
. (e talvez o comando unset LC_ALL
antes disso também)
LC_ALL
This variable determines the values for all locale categories. The value of the LC_ALL environment variable has precedence over any of the other environment variables starting with LC_ (LC_COLLATE, LC_CTYPE, LC_MESSAGES, LC_MONETARY, LC_NUMERIC, LC_TIME) and the LANG environment variable.