(no subject)

Christian Walther cptsalek at gmail.com
Wed Jun 9 17:22:38 UTC 2010


Hi Thorsten,

On 9 June 2010 18:11, Thorsten Baumeister <Toras at gmx.net> wrote:
> Hi everyone!
> I have a problem to get my KDE4 Terminal working. I use a German keyboard, and I am not able to use some special keys. Especially I miss the pipe symbol ('|'), but there are some more like '§', '@', '€'. I compiled KDE on my own computer running a FreeBSD 8.0-STABLE kernel. All packages are up to date. Any hints? If I use an SSH connection (PuTTY), everything is fine.

I created a /etc/X11/xorg.conf file using

# X -configure

and added/changed the following section:

Section "InputDevice"
    Identifier     "Keyboard0"
    Driver         "keyboard"
    Option         "XkbModel" "pc105"
    Option         "XkbLayout" "de"
    Option         "XkbVariant" "nodeadkeys"
    Option         "XkbOptions" "terminate:ctrl_alt_bksp"
EndSection

The last Option line isn't necessary, but it makes it possible to
terminate the X server by pressing Ctrl+Alt+Backspace, which has been
deactivated in recent default configurations.

If you add the above mentioned Section "InputDevice", make sure that
the Section "ServerLayout" contains a CoreKeyboard entry matching the
given identifier. In my case, Section "ServerLayout" looks like:

Section "ServerLayout"
    Identifier     "XFree86 Configured"
    Screen      0  "Screen0" 0 0
    InputDevice    "Mouse0" "CorePointer"
    InputDevice    "Keyboard0" "CoreKeyboard"
    Option         "Clone" "off"
EndSection


HTH
Christian Walther


More information about the freebsd-stable mailing list