Skip to content

Instantly share code, notes, and snippets.

View Tharun-DV's full-sized avatar
🎯
Focusing

M1NDB3ND3R Tharun-DV

🎯
Focusing
View GitHub Profile
@Tharun-DV
Tharun-DV / fixlocale.sh
Last active July 2, 2022 03:44 — 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