Problema de localidade do Ubuntu 14.04.1

1

Por que locale ainda me lança os erros abaixo?

root@ubuntu:~# locale
locale: Cannot set LC_CTYPE to default locale: No such file or directory
locale: Cannot set LC_ALL to default locale: No such file or directory
LANG=
LANGUAGE=
LC_CTYPE=UTF-8
LC_NUMERIC="POSIX"
LC_TIME="POSIX"
LC_COLLATE="POSIX"
LC_MONETARY="POSIX"
LC_MESSAGES="POSIX"
LC_PAPER="POSIX"
LC_NAME="POSIX"
LC_ADDRESS="POSIX"
LC_TELEPHONE="POSIX"
LC_MEASUREMENT="POSIX"
LC_IDENTIFICATION="POSIX"
LC_ALL=

Este é meu /etc/default/locale

LANG="en_US.UTF-8"
LANGUAGE="en_US:"
LC_ALL="en_US.UTF-8"

Isso é locale -a

root@ubuntu:~# locale -a
locale: Cannot set LC_CTYPE to default locale: No such file or directory
C
C.UTF-8
POSIX
en_AG
en_AG.utf8
en_AU.utf8
en_BW.utf8
en_CA.utf8
en_DK.utf8
en_GB.utf8
en_HK.utf8
en_IE.utf8
en_IN
en_IN.utf8
en_NG
en_NG.utf8
en_NZ.utf8
en_PH.utf8
en_SG.utf8
en_US
en_US.iso88591
en_US.utf8
en_ZA.utf8
en_ZM
en_ZM.utf8
en_ZW.utf8

Já tentou reinicializar e entrar novamente, mas não parece ter as configurações em /etd/default/locale .

    
por resting 28.09.2014 / 04:04

1 resposta

1

Após mais pesquisas e experimentos com /etc/environment , percebo que a autorização do PAM pode ter algo a ver com isso.

Eu tinha a linha UsePAM no no meu /etc/ssh/sshd_config .
Reverta de volta ao padrão que é UsePam yes e o Ubuntu começa a recuperar as alterações em /etc/default/locale e /etc/environment novamente.
Então, as configurações em /etc/default/locale realmente funcionaram.

    
por resting 28.09.2014 / 08:24