Gentoo Archives: gentoo-user-de

From: Sebastian <selist@×××××.de>
To: gentoo-user-de@l.g.o
Subject: Re: [gentoo-user-de] x (kde) start probleme
Date: Fri, 03 Mar 2017 16:44:03
Message-Id: 1768527.enTFrkVWRm@l1-gentoo
In Reply to: Re: [gentoo-user-de] x (kde) start probleme by Sven Eden
1 Am Freitag, 3. März 2017, 16:46:56 schrieb Sven Eden:
2 > Am Freitag, 3. März 2017, 15:29:20 CET schrieb Sebastian:
3 > > Mit den Spracheinstellung hatte ich auch meine Probleme und vieleicht ist
4 > > das noch nicht korrekt. Für Deutsch war kein erkennbares UTF8 Layout
5 > > vorhanden so habe ich eines erstellt mit locale-gen (ohne recht zu
6 > > verstehen was dabei genau passiert) und mit eselect gesetzt.
7 >
8 > Das sieht auch gut aus.
9 >
10 > Und was steht in /etc/conf.d/keymaps?
11
12 # Use keymap to specify the default console keymap. There is a complete tree
13 # of keymaps in /usr/share/keymaps to choose from.
14 keymap="de"
15
16 # Should we first load the 'windowkeys' console keymap? Most x86 users will
17 # say "yes" here. Note that non-x86 users should leave it as "no".
18 # Loading this keymap will enable VT switching (like ALT+Left/Right)
19 # using the special windows keys on the linux console.
20 windowkeys="YES"
21
22 # The maps to load for extended keyboards. Most users will leave this as is.
23 extended_keymaps=""
24 #extended_keymaps="backspace keypad euro2"
25
26 # Tell dumpkeys(1) to interpret character action codes to be
27 # from the specified character set.
28 # This only matters if you set unicode="yes" in /etc/rc.conf.
29 # For a list of valid sets, run `dumpkeys --help`
30 dumpkeys_charset=""
31
32 # Some fonts map AltGr-E to the currency symbol instead of the Euro.
33 # To fix this, set to "yes"
34 fix_euro="yes"
35
36
37 >
38 > Bei mir steht:
39 >
40 > ~ $ grep "^[^#]" /etc/conf.d/keymaps
41 > keymap="de-latin1"
42 > windowkeys="YES"
43 > extended_keymaps=""
44 > dumpkeys_charset=""
45 > fix_euro="NO"
46 >
47 > Da braucht man allerdings noch einen UTF-8 Font für die Konsole:
48 >
49 > ~ $ grep "^[^#]" /etc/conf.d/consolefont
50 > consolefont="lat9w-10"
51 > consoletranslation="8859-15_to_uni"
52 > unicodemap="lat9w"
53
54 consolefont="default8x16"
55
56 >
57 > (Hinweis: lat9w-10 ist recht klein.)
58 >
59 > Damit bei mir alles rund läuft, habe ich mir eine generelle Konfiguration
60 > für X gebaut, die allerdings nicht auf meinem Mist gewachsen ist:
61 >
62 > ~ $ cat /etc/X11/xorg.conf.d/00-keyboard.conf
63 > Section "InputClass"
64 > Identifier "keyboard-all_de"
65 > Driver "evdev"
66 > Option "XkbLayout" "de"
67 > Option "XkbOptions" "compose:rwin altwin:meta_alt"
68 > MatchIsKeyboard "on"
69 > EndSection
70
71 Danke da werde ich mal experimentieren.
72
73 Gruß
74 Sebastian