152

I use 12.04 Server in command line mode (no X installed), and I would like to change the keyboard layout. How can I do this?

Nicolas Raoul
  • 11,603
Mike
  • 1,523
  • Mike, would you consider changing the accepted answer? It looks like there is a much better answer now than the originally accepted answer. – Azendale Apr 24 '16 at 18:29

9 Answers9

269

After trying sudo dpkg-reconfigure console-data, I found out that it doesn't work after a reboot.

However,

sudo dpkg-reconfigure keyboard-configuration

does work after reboot and also has more options.

More info here.

Eliah Kagan
  • 117,780
Göran Törnquist
  • 2,691
  • 2
  • 12
  • 2
  • 2
    How do I find out what kind of keyboard I have? It's the Windows 8 Surface pro one. What's the US standard one? – CMCDragonkai Apr 09 '14 at 02:16
  • 26
    This is the correct answer, not the other one. – Clayton Dukes Jun 19 '14 at 15:55
  • 2
    Older Ubuntu releases, such as Lucid Lynx (10.04), don't have the keyboard-configuration package. Göran's link has the correct answer for these: sudo dpkg-reconfigure console-setup If your cursor keys don't work as expected in the ncurses UI, try those on the numeric keypad. – lbo Oct 09 '16 at 08:43
  • Worked for me in Ubuntu Server 20.04 with a Raspberry Pi 3B+ For some reason I had to be connected to the internet if I wanted the command to work properly and for the changes to stay active even after rebooting. – Niko Jan 01 '21 at 06:52
66

Please try the following command:

sudo dpkg-reconfigure console-data

If it says you don't have the package, then install console-data with:

sudo apt-get install console-data

More about Locale Configuration: LocaleConf - Community Help Wiki

blade19899
  • 26,704
PetterF
  • 773
  • 21
    Like that other answer mentions: This does not carry over a reboot. (tested in 12.04.1 LTS) – JonnyJD Aug 01 '13 at 20:11
  • 1
    A hint for people who want to change their keyboard layout during console install: Edit /etc/apt/sources.list and add 'universe' to the listed URL. Otherwise it can't find consol-data – Tobias F. Meier Aug 19 '13 at 17:46
47

Try:

loadkeys es (Spanish)
loadkeys pt (Portuguese)
loadkeys br (Brazilian Portuguese)
loadkeys ch (Swiss German)

JSON C11
  • 334
17

For Ubuntu Desktop, you can use:

  • Set US layout: setxkbmap us
  • Set GB layout: setxkbmap gb
6

For me this did it

localectl set-keymap de-latin1

5

I just had this issue on a console mode only VM.

The solution in my case was editing /etc/default/keyboard and changing the

XKBLAYOUT="de"

line (a german VM) to

XKBLAYOUT="us"

to work with my US keyboard and then rebooting.

  • I believe this only works with a GUI. Also - the reboot is not really required, you can also set the variable in the current terminal by simply overwriting it. XKBLAYOUT="us" – SaAtomic Jun 09 '17 at 08:28
  • 1
    It also works on Ubuntu 20 (focal) – ATorras Nov 02 '21 at 13:41
4

Using Ubuntu 13.10 Server as a Virtual Machine in VirtualBox, this worked for me:

(no GUI, only command-line mode)

Default keyboard layout was French, 'AZERTY'

loadkeys us (English, was not 'en' for me, as some docs state)

Note that you will likely have to run the command as sudo loadkeys us.

guntbert
  • 13,134
  • You might want to edit your last line and use sudo instead of root, since root is not the recommended method for commands needing administrator priviledges. – RCF May 09 '15 at 03:34
  • 2
    I could not get loadkeys us to work, even with sudo. It was saying that the file "us" couldn't be found. This on my Raspberry Pi. – jocull Sep 25 '16 at 17:48
1

I succeeded today configuring this on my Raspberry Pi 3 via:

  • generating the required locale locale-gen de_DE.UTF-8
  • calling loadkeys de
Michael
  • 11
0

so many potential solutions, but here is what helped me in the end:

sudo dpkg-reconfigure locales

if it failes with something like locales not found, install the package locales and rerun the above command.