Skip to content

Instantly share code, notes, and snippets.

View SimPilotAdamT's full-sized avatar
🇵🇸
Free Palestine!

Adam Tazul SimPilotAdamT

🇵🇸
Free Palestine!
  • Crying at my desk because I hate debugging
  • X @tazul_adam
View GitHub Profile
@ChrisTitusTech
ChrisTitusTech / fixlocale.sh
Created October 27, 2020 21:51
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