Skip to content

Instantly share code, notes, and snippets.

@metcalfc
Forked from tkhduracell/fix.sh
Created July 10, 2020 03:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save metcalfc/5eda91181870479931d98729e022a3ca to your computer and use it in GitHub Desktop.
Save metcalfc/5eda91181870479931d98729e022a3ca to your computer and use it in GitHub Desktop.
Fix locale on raspberry pi (raspbian) "Setting locale failed."
#
# How to get rid of the locale warning on raspberry pi
#
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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment