This is a copy of a message I sent some days ago to the list. You can
see the full thread in the archives.

------------------ cut here -----------------------------
I got some trouble in configuring keyboard layout for my terminals.

The terminal haves a Brazilian keyboard, model "ABNT2", with "BR" layout.

When loaded, the "\" key was giving me "<", and "]" key was giving me "\".

I looked the code, and found that "(ltsp root tree)/etc/build_x4_cfg"
was ignoring the settings of XKBMODEL, XKBOPTIONS and XKBVARIANT from
"lts.conf".

The problematic code was:

-----------------------------
Section "InputDevice"
      Identifier  "Keyboard0"
      Driver      "keyboard"
      Option      "XkbLayout" "${XKBLAYOUT:-"us"}"
EndSection
-----------------------------

I've changed it to:

---------------------------------
Section "InputDevice"
      Identifier  "Keyboard0"
      Driver      "keyboard"
      Option      "XkbModel"   "${XKBMODEL:-"pc101"}"
      Option      "XkbLayout"  "${XKBLAYOUT:-"us"}"
      Option      "XkbVariant" "${XKBVARIANT:-""}"
      Option      "XkbOptions" "${XKBOPTIONS:-""}"
EndSection
---------------------------------

Now my keyboard works fine.
------------------ cut here -----------------------------

-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier.
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_____________________________________________________________________
Ltsp-discuss mailing list.   To un-subscribe, or change prefs, goto:
      https://lists.sourceforge.net/lists/listinfo/ltsp-discuss
For additional LTSP help,   try #ltsp channel on irc.freenode.net

Reply via email to