"Felix Eckhardt" <[EMAIL PROTECTED]> wrote ..
Hey Felix,
sorry - but for my network it all worked like in the docs - quite simple.
I didn't have to change anything than
XkbLayout = de
in lts.conf.
How did you et those problems? Is it maybe because you didn't configure X11 on
your server with german keyboard?
Cheers
Eckhard
> Hey folks!
>
> It took me a long time to figure out why my german keyboard did not work
> on
> the ltsp clients. Now - after a few days of getting frustrated and googling
> and googling across the world, I finally found a way.
> You just have to change some lines in the build_x4_cfg. Here are my changes:
>
> Section "InputDevice"
> Driver "keyboard"
> Identifier "Keyboard0"
> Option "Protocol" "Standard"
> Option "XkbLayout" "${XKBLAYOUT:-"us"}"
> Option "XkbModel" "${XKBMODEL:-"pc104"}"
> Option "XkbRules" "${XKBRULES:-"xfree86"}"
> Option "XkbVariant" "${XKBVARIANT:-"nodeadkeys"}"
> EndSection
>
> In the orginial version, only the XKbLayout was set. That is not enough.
> I
> guess the most important Option-line is the "XKbRules". Without this line,
> you will just get an error message from the X-Server like "could not load
> xkb".
>
> And now just some final changes in the ltsp.conf
>
> XkbModel = pc105
> XkbLayout = de
> XkbRules = xfree86
> XkbVariant = nodeadkeys
>
> Of course, this settings depened on your keyboard language. Puhh ... thats
> it! Reboot and it should work.
>
> Greetings
> Felix