Xorg configurare la tastiera in italiano
Con il nuovo Xorg i files di configurazione che ci interessano si trovavo nella cartella /etc/X11/xorg.conf.d/ nello specifico il file /etc/X11/xorg.conf.d/10-evdev.conf
quindi aprite un terminale da root e editate il file:
potete editare il file con un editore grafico tipo gedit (Gnome) kate (Kde) scite…
aggiungete le seguenti righe:
Option “XkbLayout” “it” # tastiera italiana
Option “XkbOptions” “terminate:ctrl_alt_bksp” # ctrl+alt+canc
nella sezione keyboard:
Section “InputClass”
Identifier “evdev keyboard catchall”
MatchIsKeyboard “on”
MatchDevicePath “/dev/input/event*”
Driver “evdev”
EndSection
ottenendo:
Section “InputClass”
Identifier “evdev keyboard catchall”
MatchIsKeyboard “on”
MatchDevicePath “/dev/input/event*”
Driver “evdev”
Option “XkbLayout” “it” # tastiera italiana
Option “XkbOptions” “terminate:ctrl_alt_bksp” # ctrl+alt+canc
EndSection
salvate il file e se volete riavviate il sistema.
Ecco perchè