Após algumas pesquisas com /var/log/Xorg.?.log
, descobri que as duas telas estavam carregando o teclado apropriado e, depois, carregando kdb_0. A seção relevante foi:
[ 3.666] (==) ModulePath set to "/usr/lib/i386-linux-gnu/xorg/extra-modules,/usr/lib/xorg/extra-modules,/usr/lib/xorg/modules"
[ 3.666] (==) |-->Input Device "kbd_0"
[ 3.666] (==) |-->Input Device "<default keyboard>"
[ 3.666] (==) The core pointer device wasn't specified explicitly in the layout.
Using the first mouse device.
[ 3.666] (==) The core keyboard device wasn't specified explicitly in the layout.
Using the default keyboard configuration.
A referência ao "teclado central" fez algo na minha memória. Referindo-se a uma das tentativas falhas do xorg.conf enquanto eu tentava fazer o lightdm funcionar, fiz modificações em ambas as linhas InputDevice de ambas as seções ServerLayout:
Section "ServerLayout"
Identifier "Layout0"
Screen 0 "Screen0" 0 0
InputDevice "kbd_0" "CoreKeyboard"
InputDevice "mouse_0" "CorePointer"
Option "AutoEnableDevices" "false"
Option "AutoAddDevices" "false"
Option "AllowEmptyInput" "true"
EndSection
Section "ServerLayout"
Identifier "Layout1"
Screen 0 "Screen1" 0 0
InputDevice "kbd_1" "CoreKeyboard"
InputDevice "mouse_1" "CorePointer"
Option "AutoEnableDevices" "false"
Option "AutoAddDevices" "false"
Option "AllowEmptyInput" "true"
EndSection
Após a reinicialização, a segunda carga de kdb_0 desapareceu dos dois logs e toda a configuração está funcionando corretamente.