Skip to content

Instantly share code, notes, and snippets.

@zoonderkins
Created February 21, 2019 11:27
Show Gist options
  • Save zoonderkins/dd14905214bfe5aa80aae0777e428933 to your computer and use it in GitHub Desktop.
Save zoonderkins/dd14905214bfe5aa80aae0777e428933 to your computer and use it in GitHub Desktop.
Linux change keyboard layout to US #linux

hetzner cloud vps

By default, it comes with DE keyboard. It kinda a pain in the ass...

So easy way to change to US keyboard layout, follow this few steps

// not recommend this
dpkg-reconfigure keyboard-configuration

// recommend this

sudo nano /etc/default/keyboard 

XKBLAYOUT="de" to 

XKBMODEL="pc105"
XKBLAYOUT="us"
XKBVARIANT=""
XKBOPTIONS=""

// reboot vps
reboot 

References: https://askubuntu.com/questions/342066/how-to-permanently-configure-keyboard

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment