1

I have this keyboard: http://trust.com/products/product.aspx?artnr=17603 and i cant configure it with Raspbian. I run rasp-config and went to configure_keyboard, selected a generic 105-key keyboard and set the language to Portuguese (my language) and it is all messy! Help is appreciated

pasadinhas
  • 153
  • 1
  • 2
  • 7

1 Answers1

2

Check your /etc/default/keyboard for your layout.

cat /etc/default/keyboard | grep LAYOUT

If it's anything other than your language code, let's change it. We'll have to do that as root, so:

sudo nano /etc/default/keyboard

and change the value to what you need it to be. I use dvorak, so if I were on Debian mine would look like:

XKBLAYOUT="dvorak"

Yours will just be your language code, though. Just to make sure, also, it'd probably be good measure to check your locale. Can you also check the result of:

env | grep LANG
coxley
  • 198
  • 5