Skip to content

Instantly share code, notes, and snippets.

View peleblanc's full-sized avatar

Pierre peleblanc

  • Québec, Canada
View GitHub Profile
@peleblanc
peleblanc / fixlocale.sh
Created October 28, 2021 09:38 — forked from ChrisTitusTech/fixlocale.sh
Fix Locales in any distro
#!/bin/bash
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 -a /etc/locale.conf
sudo locale-gen en_US.UTF-8