Estou tentando ter um comportamento de teclado do Mac na minha máquina ubuntu/trusty32
virtual e tive alguns problemas com ele até agora.
Usar sudo dpkg-reconfigure keyboard-configuration
pareceu funcionar no início, mas não havia como manter as alterações após a reinicialização, e o comando sudo udevadm trigger --subsystem-match=input --action=change
não funcionava.
O conteúdo /etc/default/keyboard
foi:
XKBMODEL="macbook79"
XKBLAYOUT="fr"
XKBVARIANT=""
XKBOPTIONS="lv3:ralt_switch"
Depois de algumas leituras e testes, descobri que XKBVARIANT="mac"
tem efeitos melhores. Agora tenho que digitar o comando sudo udevadm trigger --subsystem-match=input --action=change
para obter o comportamento esperado, mesmo após uma reinicialização .
Então, eu estou querendo saber se eu interpretei mal a frase
After modifying
/etc/default/keyboard
, you can apply the changes to the Linux console by running setupcon. If X is configured to use that file too, then the changes will become visible to X only ifudevadm trigger --subsystem-match=input --action=change
is called, or the system is rebooted.
Como fazer com que a reinicialização leve em conta a nova configuração do teclado?