aviso: a configuração do local falhou.

Em muitas das gotas do meu Digital Ocean, às vezes recebo isso sempre que estou instalando algo:

perl: warning: Setting locale failed.
perl
: warning: Please check that your locale settings:
LANGUAGE
= (unset),
LC_ALL
= (unset),
LC_TIME
= "es_CL.UTF-8",
LC_MONETARY
= "es_CL.UTF-8",
LC_CTYPE
= "en_US.UTF-8",
LC_ADDRESS
= "es_CL.UTF-8",
LC_TELEPHONE
= "es_CL.UTF-8",
LC_NAME
= "es_CL.UTF-8",
LC_MEASUREMENT
= "es_CL.UTF-8",
LC_IDENTIFICATION
= "es_CL.UTF-8",
LC_NUMERIC
= "es_CL.UTF-8",
LC_PAPER
= "es_CL.UTF-8",
LANG
= "en_US.UTF-8"
are supported
and installed on your system.
perl
: warning: Falling back to the standard locale ("C").
locale
: Cannot set LC_ALL to default locale: No such file or directory

Visto que é apenas um aviso, tendo a rejeitá-lo. Mas ao instalar alguns pacotes, principalmente o postgres, isso pode causar um problema.

Como resolver

Vá para / etc / environment:

sudo vim /etc/environment

Anexe este arquivo:

LC_ALL="en_US.UTF-8"

ou qualquer outro valor. Estou no Chile, mas sempre uso tudo em inglês, então escolhi en_US,

Depois é só reiniciar a máquina

sudo reboot

E é isso.