como corrigir erro perl -e exit?

1
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
    LANGUAGE = (unset),
    LC_ALL = (unset),
    LC_PAPER = "id_ID.UTF-8",
    LC_ADDRESS = "id_ID.UTF-8",
    LC_MONETARY = "id_ID.UTF-8",
    LC_NUMERIC = "id_ID.UTF-8",
    LC_TELEPHONE = "id_ID.UTF-8",
    LC_IDENTIFICATION = "id_ID.UTF-8",
    LC_MEASUREMENT = "id_ID.UTF-8",
    LC_TIME = "id_ID.UTF-8",
    LC_NAME = "id_ID.UTF-8",
    LANG = "en_US.UTF-8"
    are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").

como consertar isso?

antes que você diga este repost eu já faço

adicione linha: em / etc / environment & amp; / etc / default / locale

LANGUAGE=en_US.UTF-8
LC_ALL=en_US.UTF-8
LANG=en_US.UTF-8
LC_TYPE=en_US.UTF-8

e faça o comando:

dpkg-reconfigure locales
locale-gen en_US.UTF-8
    
por Ivan 02.06.2015 / 22:09

1 resposta

1

Adicione as seguintes linhas ao seu arquivo /home/username/.bashrc :

export LANGUAGE=en_US.UTF-8
export LC_ALL=en_US.UTF-8
    
por Terrance 02.06.2015 / 22:22