Created
March 12, 2018 00:14
-
-
Save natesubra/d3105506eee5cc64538c3ce8b3f2d2d0 to your computer and use it in GitHub Desktop.
Fix raspian locale
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
| sudo sed -i "s/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/g" -i /etc/locale.gen | |
| sudo locale-gen en_US.UTF-8 | |
| sudo update-locale en_US.UTF-8 | |
| export LANGUAGE=en_US.UTF-8 | |
| export LANG=en_US.UTF-8 | |
| export LC_ALL=en_US.UTF-8 | |
| echo "LC_ALL=en_US.UTF-8" | sudo tee -a /etc/environment | |
| echo "en_US.UTF-8 UTF-8" | sudo tee -a /etc/locale.gen | |
| echo "LANG=en_US.UTF-8" | sudo tee /etc/locale.conf |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment