Easy Tutorial
❮ Linux Comm Id Linux Comm Smbclient ❯

Linux loadkeys Command

Linux Command Manual

The Linux loadkeys command can change the Linux keyboard driver's translation process of keyboard input based on a keyboard definition table. For detailed instructions, please refer to dumpkeys.

Syntax

loadkeys [ -d --default ] [ -h --help ] [ -q --quiet ] [ -v --verbose [ -v --verbose ]...] [ -m --mktable ] [ -c --clearcompose ] [ -s --clearstrings ] [ filename... ]

Parameters:

Example

Define key combinations
<pre>
# loadkeys 
control alt keycode 88 = F80 // Determine the key code
string F80="tutorialpro.org" // Set the value for the variable
// Press Ctrl + D to confirm input

// Effect: Press Ctrl + Alt + F12 to output Lx138.Com

# dumpkeys --funcs-only // Display function keys

……Omit partial results
string F3 = "\033[[C"
string F4 = "\033[[D"
string F5 = "\033[[E"
string F6 = "\033[17~"
string F7 = "\033[18~"
string F8 = "\033[19~"
string F9 = "\033[20~"
string F10 = "\033[21~"
string F11 = "\033[23~"
string F12 = "\033[24~"
string F13 = "\033[25~"
string F14 = "\033[26~"
string F15 = "\033[28~"
string F16 = "\033[29~"
string F17 = "\033[31~"
string F18 = "\033[32~"
string F19 = "\033[33~"
string F20 = "\033[34~"
string Find = "\033[1~"
string Insert = "\033[2~"
string Remove = "\033[3~"
string Select = "\033[4~"
string Prior = "\033[5~"
string Next = "\033[6~"
string Macro = "\033[M"
string Pause = "\033[P"
string F80 = "tutorialpro.org"

Linux Command Manual

❮ Linux Comm Id Linux Comm Smbclient ❯