# ProxMox - Keyboard Configs

* To reconfigure the keyboard in ProxMox, we have 2 points to change
    

1. In the Web interface
    

In **Datacenter** → **Options** → **Keyboard Layout**

![](https://cdn.hashnode.com/res/hashnode/image/upload/v1702128055434/9e6ea8d4-d932-40b2-b5a1-98d0d934a677.png align="center")

1. In the Console
    

* The console does not use the same configuration as the Web, other procedures are needed.
    
* The current settings are kept in the keyboard file at
    

```bash
cat /etc/default/keyboard
```

* Example of US config
    

```powershell
# KEYBOARD CONFIGURATION FILE

# Consult the keyboard(5) manual page.

XKBMODEL="pc105"
XKBLAYOUT="us"
XKBVARIANT="alt-intl"
XKBOPTIONS=""

BACKSPACE="guess"
```

* Example of PT-BR config
    

```powershell
# KEYBOARD CONFIGURATION FILE

# Consult the keyboard(5) manual page.

XKBMODEL="pc105"
XKBLAYOUT="br"
XKBVARIANT=""
XKBOPTIONS=""

BACKSPACE="guess"
```

* To reconfigure, you can change the file directly or use the support application (recommended)
    

```bash
dpkg-reconfigure keyboard-configuration
```
