--- guide-localization.xml.orig 2005-12-19 05:08:41.000000000 -0800 +++ guide-localization.xml 2005-12-19 05:44:10.000000000 -0800 @@ -216,6 +216,23 @@

+Once you have set the right locale, be sure to update your environment +variables to make your system aware of the change: +

+ +
+# env-update && source /etc/profile
+
+ +

+Now, verify that the changes have taken effect: +

+ +
+$ env | grep -i LC_
+
+ +

There is also additional localisation variable called LINGUAS, which affects to localisation files that get installed in gettext-based programs, and decides used localisation for some specific software packages, such as @@ -256,6 +273,14 @@ # export LANG="en_US.ISO-8859-15" +

+Be sure to update the environment after the change: +

+ +
+# env-update && source /etc/profile
+
+
@@ -335,10 +360,24 @@ Identifier "Keyboard1" ... Option "XkbLayout" "de" - # Option "XkbVariant" "nodeadkeys" + #Option "XkbModel" "pc105" ## this is for international keyboards. + # Option "XkbVariant" "nodeadkeys" ## this would be used for xterm input ... +

+If you have an international keyboard layout, you should set the option +XkbModel to pc102 or pc105, as this will allow mapping of the +additional keys specific to your keyboard. +

+ +

+Deadkeys allow you to press keys that will not show immediately but will be +combined with another letter to produce a single character such as é,è,á,à, +etc. Setting XkbVariant to nodeadkeys allows input these special +characters into X terminals. +

+
@@ -365,7 +404,7 @@

In order to get your console to display the Euro symbol, you will need to set CONSOLEFONT in -/etc/rc.conf to a file found in +/etc/conf.d/consolefont to a file found in /usr/share/consolefonts/ (without the .psfu.gz). lat9w-16 has the Euro symbol.

@@ -374,6 +413,22 @@ CONSOLEFONT="lat9w-16" +

+You should verify that CONSOLEFONT is in the boot runlevel: +

+ +
+# rc-update show | grep -i consolefont
+
+ +

+If no runlevel is displayed for CONSOLEFONT, then add it to the proper level: +

+ +
+# rc-update add consolefont boot
+
+