first commit

This commit is contained in:
S Groesz 2020-05-25 21:58:51 +00:00
commit 031032d4e5
2 changed files with 12 additions and 0 deletions

0
README.md Normal file
View File

12
fixlocale.sh Executable file
View File

@ -0,0 +1,12 @@
#!/bin/sh
if (locale 2>&1 | grep "locale: Cannot set"); then
if ! [ "$(id -u)" -eq 0 ]; then
echo "Locales is broken, but you must be root to fix"
exit 1
fi
echo "Fixing Locales"
echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen
locale-gen
update-locale LANG=en_US.UTF-8 UTF-8
dpkg-reconfigure --frontend=noninteractive locales
fi