Created
June 22, 2012 17:23
-
-
Save boxbilling/2974073 to your computer and use it in GitHub Desktop.
Install new locale on Debian
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Install new locale | |
# | |
# $ sudo sh install_locale.sh fr_FR | |
cd /usr/share/locales | |
./install-language-pack $1 | |
dpkg-reconfigure locales | |
locale -a |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment