On my other Linux (ArchLinux), I've the following settings for my french keyboard and locales:
KEYMAP="fr-latin9"
CONSOLEFONT="lat9w-16"
It's OK for the KEYMAP, but what's the equivalent for "CONSOLEFONT" under TCL?
Moreover, I'd like to set my locales to "french" too!
For that, I tried to put "kmap=fr-latin9 lang=fr_FR.UTF-8" to my boot stanza.
After the boot, calling "locale" returns the correct settings in "LC_*" env variables, but with some warnings:
$ locale
locale: Cannot set LC_CTYPE to default locale: No such file or directory
locale: Cannot set LC_MESSAGES to default locale: No such file or directory
locale: Cannot set LC_ALL to default locale: No such file or directory
LANG=fr_FR.UTF-8
LC_CTYPE="fr_FR.UTF-8"
LC_NUMERIC="fr_FR.UTF-8"
...
LC_IDENTIFICATION="fr_FR.UTF-8"
LC_ALL=
Could I ignore these warnings?
Help please?