| | 11 | Seit Version 1.99rc1 sollte Keyboardlayoutsupport funktionieren, tut es aber bis jetzt nicht. |
| | 12 | |
| | 13 | == Installation == |
| | 14 | Erzeugen eines Keyboardlayouts was Grub auch lesen kann |
| | 15 | {{{ |
| | 16 | ckbcomp de neo |grub-mklayout -v -o /boot/grub/layout/de_neo.gkb |
| | 17 | }}} |
| | 18 | |
| | 19 | in /etc/default/grub : |
| | 20 | {{{ |
| | 21 | GRUB_TERMINAL_INPUT=de_keyboard |
| | 22 | }}} |
| | 23 | in /etc/grub.d/40_custom |
| | 24 | {{{ |
| | 25 | #!/bin/sh |
| | 26 | exec tail -n +3 $0 |
| | 27 | |
| | 28 | insmod keylayouts |
| | 29 | keymap /boot/grub/layout/de_neo.gkb |
| | 30 | terminal_input de_keyboard |
| | 31 | }}} |
| | 32 | |
| | 33 | Nun noch ein `update-grub` und beim nächsten mal booten, könnte Neo geladen sein. |
| | 34 | |
| | 35 | zum ausprobieren kann man auch auf der grub commandozeile (beim booten) im command mode: |
| | 36 | {{{ |
| | 37 | insmod keylayouts |
| | 38 | keymap /boot/grub/layout/de_neo.gkb |
| | 39 | terminal_input de_keyboard |
| | 40 | }}} |