Created
December 29, 2009 23:58
-
-
Save bigeasy/265720 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[[email protected] ~]$ sudo dpkg-reconfigure locales | |
perl: warning: Setting locale failed. | |
perl: warning: Please check that your locale settings: | |
LANGUAGE = (unset), | |
LC_ALL = "en_US", | |
LANG = (unset) | |
are supported and installed on your system. | |
perl: warning: Falling back to the standard locale ("C"). | |
locale: Cannot set LC_CTYPE to default locale: No such file or directory | |
locale: Cannot set LC_MESSAGES to default locale: No such file or directory | |
locale: Cannot set LC_ALL to default locale: No such file or directory | |
[[email protected] ~]$ export LANGUAGE="en_US" | |
[[email protected] ~]$ export LANG="en_US" | |
[[email protected] ~]$ sudo dpkg-reconfigure locales | |
perl: warning: Setting locale failed. | |
perl: warning: Please check that your locale settings: | |
LANGUAGE = "en_US", | |
LC_ALL = "en_US", | |
LANG = "en_US" | |
are supported and installed on your system. | |
perl: warning: Falling back to the standard locale ("C"). | |
locale: Cannot set LC_CTYPE to default locale: No such file or directory | |
locale: Cannot set LC_MESSAGES to default locale: No such file or directory | |
locale: Cannot set LC_ALL to default locale: No such file or directory |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[[email protected] ~]$ export LC_ALL="en_US" | |
-bash: warning: setlocale: LC_ALL: cannot change locale (en_US) | |
[[email protected] ~]$ locale | |
locale: Cannot set LC_CTYPE to default locale: No such file or directory | |
locale: Cannot set LC_MESSAGES to default locale: No such file or directory | |
locale: Cannot set LC_ALL to default locale: No such file or directory | |
LANG= | |
LC_CTYPE="en_US" | |
LC_NUMERIC="en_US" | |
LC_TIME="en_US" | |
LC_COLLATE="en_US" | |
LC_MONETARY="en_US" | |
LC_MESSAGES="en_US" | |
LC_PAPER="en_US" | |
LC_NAME="en_US" | |
LC_ADDRESS="en_US" | |
LC_TELEPHONE="en_US" | |
LC_MEASUREMENT="en_US" | |
LC_IDENTIFICATION="en_US" | |
LC_ALL=en_US | |
[[email protected] ~]$ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment