• Ubuntu Perl locale problem

    edit the file
    /etc/environment

    add one line with your LANG, like this

    LC_ALL="en_US.UTF-8"

    save and reboot


  • Adding a language package Ubuntu

    Instalē valodas pakotnes:

    sudo apt-get -y install language-pack-en
    sudo locale-gen fr_CA.UTF-8
    sudo dpkg-reconfigure locales
    sudo vi /etc/default/locale
    sudo reboot

    /etc/default/locale
    norāda:

    LANG="fr_CA.UTF-8"
    After the reboot, the language file for Canadian french (in the UTF-8 encoding, by the way), is included and ready to use.

    Read the rest of this entry »