1.\" Copyright (c) 2014 Warren Block 2.\" All rights reserved. 3.\" 4.\" Redistribution and use in source and binary forms, with or without 5.\" modification, are permitted provided that the following conditions 6.\" are met: 7.\" 1. Redistributions of source code must retain the above copyright 8.\" notice, this list of conditions and the following disclaimer. 9.\" 2. Redistributions in binary form must reproduce the above copyright 10.\" notice, this list of conditions and the following disclaimer in the 11.\" documentation and/or other materials provided with the distribution. 12.\" 13.\" THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND 14.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 15.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 16.\" ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE 17.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 18.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 19.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 20.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 21.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 22.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 23.\" SUCH DAMAGE. 24.\" 25.\" $FreeBSD$ 26.\" 27.Dd February 14, 2022 28.Dt "VT" 4 29.Os 30.Sh NAME 31.Nm vt 32.Nd virtual terminal console driver 33.Sh SYNOPSIS 34.Cd "options TERMINAL_KERN_ATTR=_attribute_" 35.Cd "options TERMINAL_NORM_ATTR=_attribute_" 36.Cd "options VT_MAXWINDOWS=N" 37.Cd "options VT_ALT_TO_ESC_HACK=1" 38.Cd "options VT_TWOBUTTON_MOUSE" 39.Cd "options VT_FB_MAX_WIDTH=X" 40.Cd "options VT_FB_MAX_HEIGHT=Y" 41.Cd "options SC_NO_CUTPASTE" 42.Cd "device vt" 43.Pp 44In 45.Xr loader.conf 5 : 46.Cd hw.vga.textmode=1 47.Cd hw.vga.acpi_ignore_no_vga=1 48.Cd kern.vty=vt 49.Cd kern.vt.color.<colornum>.rgb="<colorspec>" 50.Cd kern.vt.fb.default_mode="<X>x<Y>" 51.Cd kern.vt.fb.modes.<connector>="<X>x<Y>" 52.Pp 53In 54.Xr loader.conf 5 or 55.Xr sysctl.conf 5 : 56.Cd kern.vt.kbd_halt=1 57.Cd kern.vt.kbd_poweroff=1 58.Cd kern.vt.kbd_reboot=1 59.Cd kern.vt.kbd_debug=1 60.Cd kern.vt.kbd_panic=0 61.Cd kern.vt.enable_bell=1 62.Sh DESCRIPTION 63The 64.Nm 65device provides multiple virtual terminals with an extensive feature 66set: 67.Bl -item -offset indent 68.It 69Unicode UTF-8 text with double-width characters. 70.It 71Large font maps in graphics mode, including support for Asian 72character sets. 73.It 74Graphics-mode consoles. 75.It 76Integration with 77KMS 78.Pq Kernel Mode Setting 79video drivers for switching between the 80.Em X Window System 81and virtual terminals. 82.El 83.Ss Virtual Terminals 84Multiple virtual terminals are provided on a single computer. 85Up to sixteen virtual terminals can be defined. 86A single virtual terminal is connected to the screen and keyboard 87at a time. 88Key combinations are used to select a virtual terminal. 89Alt-F1 through Alt-F12 correspond to the first twelve virtual terminals. 90If more than twelve virtual terminals are created, Shift-Alt-F1 through 91Shift-Alt-F4 are used to switch to the additional terminals. 92.Ss Copying and Pasting Text with a Mouse 93Copying and pasting text from the screen with a mouse is supported. 94Press and hold down mouse button 1, usually the left button, while 95moving the mouse to select text. 96Selected text is highlighted with reversed foreground and background 97colors. 98To select more text after releasing mouse button 1, press mouse button 993, usually the right button. 100To paste text that has been selected, press mouse button 2, usually the 101middle button. 102The text is entered as if it were typed at the keyboard. 103The 104.Dv VT_TWOBUTTON_MOUSE 105kernel option can be used with mice that only have two buttons. 106Setting this option makes the second mouse button into the 107paste button. 108See 109.Xr moused 8 110for more information. 111.Ss Scrolling Back 112Output that has scrolled off the screen can be reviewed by pressing the 113Scroll Lock key, then scrolling up and down with the arrow keys. 114The Page Up and Page Down keys scroll up or down a full screen at a 115time. 116The Home and End keys jump to the beginning or end of the scrollback 117buffer. 118When finished reviewing, press the Scroll Lock key again to return to 119normal use. 120.Sh DRIVER CONFIGURATION 121.Ss Kernel Configuration Options 122These kernel options control the 123.Nm 124driver. 125.Bl -tag -width MAXCONS 126.It Dv TERMINAL_NORM_ATTR= Ns Pa attribute 127.It Dv TERMINAL_KERN_ATTR= Ns Pa attribute 128These options change the default colors used for normal and kernel 129text. 130Available colors are defined in 131.In sys/terminal.h . 132See 133.Sx EXAMPLES 134below. 135.It Dv VT_MAXWINDOWS=N 136Set the number of virtual terminals to be created to 137.Fa N . 138The value defaults to 12. 139.It Dv VT_ALT_TO_ESC_HACK=1 140When the Alt key is held down while pressing another key, send an ESC 141sequence instead of the Alt key. 142.It Dv VT_TWOBUTTON_MOUSE 143If defined, swap the functions of mouse buttons 2 and 3. 144In effect, this makes the right-hand mouse button perform a paste. 145These options are checked in the order shown. 146.It Dv SC_NO_CUTPASTE 147Disable mouse support. 148.It VT_FB_MAX_WIDTH=X 149Set the maximum width to 150.Fa X . 151.It VT_FB_MAX_HEIGHT=Y 152Set the maximum height to 153.Fa Y . 154.El 155.Sh BACKWARDS COMPATIBILITY 156Several options are provided for compatibility with the previous 157console device, 158.Xr sc 4 . 159These options will be removed in a future 160.Fx 161version. 162.Bl -column -offset indent ".Sy vt VT_TWOBUTTON_MOUSE" ".Sy SC_TWOBUTTON_MOUSE" 163.It Sy vt Option Name Ta Sy sc Option Name 164.It Dv TERMINAL_KERN_ATTR Ta Dv SC_KERNEL_CONS_ATTR 165.It Dv TERMINAL_NORM_ATTR Ta Dv SC_NORM_ATTR 166.It Dv VT_TWOBUTTON_MOUSE Ta Dv SC_TWOBUTTON_MOUSE 167.It Dv VT_MAXWINDOWS Ta Dv MAXCONS 168.It none Ta Dv SC_NO_CUTPASTE 169.El 170.Sh START-UP OPERATION WITH X86 BIOS SYSTEMS 171The computer BIOS starts in text mode, and 172the 173.Fx 174.Xr loader 8 175runs, loading the kernel. 176If 177.Va hw.vga.textmode 178is set, the system remains in text mode. 179Otherwise, 180.Nm 181switches to 640x480x16 VGA mode using 182.Cm vt_vga . 183If a KMS 184.Pq Kernel Mode Setting 185video driver is available, the display is switched to high resolution 186and the KMS driver takes over. 187When a KMS driver is not available, 188.Cm vt_vga 189remains active. 190.Sh LOADER TUNABLES 191These settings can be entered at the 192.Xr loader 8 193prompt or in 194.Xr loader.conf 5 . 195.Bl -tag -width indent 196.It Va hw.vga.textmode 197Set to 1 to use virtual terminals in text mode instead of graphics mode. 198Features that require graphics mode, like loadable fonts, will be 199disabled. 200.Pp 201If a KMS driver is loaded the console will switch to (and remain in) 202graphics mode. 203.It Va hw.vga.acpi_ignore_no_vga 204Set to 1 to force the usage of the VGA driver regardless of whether 205ACPI IAPC_BOOT_ARCH signals no VGA support. 206Can be used to workaround firmware bugs in the ACPI tables. 207.It Va kern.vty 208Set this value to 209.Ql vt 210or 211.Ql sc 212to choose a specific system console, overriding the default. 213The 214.Pa GENERIC 215kernel uses 216.Nm 217when this value is not set. 218.It Va kern.vt.color. Ns Ar colornum Ns Va .rgb 219Set this value to override default palette entry for color 220.Pa colornum 221which should be in a range from 0 to 15 inclusive. 222The value should be either a comma-separated triplet of 223red, green, and blue values in a range from 0 to 255 or 224HTML-like hex triplet. 225See 226.Sx EXAMPLES 227below. 228.It Va kern.vt.fb.default_mode 229Set this value to a graphic mode to override the default mode picked by the 230.Nm 231backend. 232The mode is applied to all output connectors. 233This is currently only supported by the 234.Cm vt_fb 235backend when it is paired with a KMS video driver. 236.It Va kern.vt.fb.modes. Ns Pa connector_name 237Set this value to a graphic mode to override the default mode picked by the 238.Nm 239backend. 240This mode is applied to the output connector 241.Pa connector_name 242only. 243It has precedence over 244.Va kern.vt.fb.default_mode . 245The names of available connector names can be found in 246.Xr dmesg 8 247after loading the KMS driver. 248It will contain a list of connectors and their associated tunables. 249This is currently only supported by the 250.Cm vt_fb 251backend when it is paired with a KMS video driver. 252.El 253.Sh KEYBOARD SYSCTL TUNABLES 254These settings control whether certain special key combinations are enabled or 255ignored. 256The specific key combinations can be configured by using a 257.Xr keymap 5 258file. 259.Pp 260These settings can be entered at the 261.Xr loader 8 262prompt or in 263.Xr loader.conf 5 264and can also be changed at runtime with the 265.Xr sysctl 8 266command. 267.Bl -tag -width indent 268.It Va kern.vt.kbd_halt 269Enable halt keyboard combination. 270.It Va kern.vt.kbd_poweroff 271Enable power off key combination. 272.It Va kern.vt.kbd_reboot 273Enable reboot key combination, usually Ctrl+Alt+Del. 274.It Va kern.vt.kbd_debug 275Enable debug request key combination, usually Ctrl+Alt+Esc. 276.It Va kern.vt.kbd_panic 277Enable panic key combination. 278.El 279.Sh OTHER SYSCTL TUNABLES 280These settings can be entered at the 281.Xr loader 8 282prompt, set in 283.Xr loader.conf 5 , 284or changed at runtime with 285.Xr sysctl 8 . 286.Bl -tag -width indent 287.It Va kern.vt.enable_bell 288Enable the terminal bell. 289.El 290.Sh FILES 291.Bl -tag -width /usr/share/vt/keymaps/* -compact 292.It Pa /dev/console 293.It Pa /dev/consolectl 294.It Pa /dev/ttyv* 295virtual terminals 296.It Pa /etc/ttys 297terminal initialization information 298.It Pa /usr/share/vt/fonts/*.fnt 299console fonts 300.It Pa /usr/share/vt/keymaps/*.kbd 301keyboard layouts 302.El 303.Sh DEVCTL MESSAGES 304.Bl -column "System" "Subsystem" "1234567" -compact 305.Sy "System" Ta Sy "Subsystem" Ta Sy "Type" Ta Sy "Description" 306.It Li VT Ta BELL Ta RING Ta 307Notification that the console bell has rung. 308.El 309.Pp 310.Bl -column "Variable" "Meaning" -compact 311.Sy "Variable" Ta Sy "Meaning" 312.It Li duration_ms Ta Length of time the bell was requested to ring in milliseconds. 313.It Li enabled Ta true or false indicating whether or not the bell was administratively enabled when rung. 314.It Li hushed Ta true or false indicating whether or not the bell was quieted by the user when rung. 315.It Li hz Ta Tone that was requested in Hz. 316.El 317.Sh EXAMPLES 318This example changes the default color of normal text to green on a 319black background, or black on a green background when reversed. 320Note that white space cannot be used inside the attribute string 321because of the current implementation of 322.Xr config 8 . 323.Pp 324.Dl "options TERMINAL_NORM_ATTR=(FG_GREEN|BG_BLACK)" 325.Pp 326This line changes the default color of kernel messages to be bright red 327on a black background, or black on a bright red background when reversed. 328.Pp 329.Dl "options TERMINAL_KERN_ATTR=(FG_LIGHTRED|BG_BLACK)" 330.Pp 331To set a 1024x768 mode on all output connectors, put the following line in 332.Pa /boot/loader.conf : 333.Pp 334.Dl kern.vt.fb.default_mode="1024x768" 335.Pp 336To set a 800x600 only on a laptop builtin screen, use the following line instead: 337.Pp 338.Dl kern.vt.fb.modes.LVDS-1="800x600" 339.Pp 340The connector name was found in 341.Xr dmesg 8 : 342.Pp 343.Dl info: [drm] Connector LVDS-1: get mode from tunables: 344.Dl info: [drm] - kern.vt.fb.modes.LVDS-1 345.Dl info: [drm] - kern.vt.fb.default_mode 346.Pp 347To set black and white colors of console palette 348.Pp 349.Dl kern.vt.color.0.rgb="10,10,10" 350.Dl kern.vt.color.15.rgb="#f0f0f0" 351.Sh SEE ALSO 352.Xr kbdcontrol 1 , 353.Xr login 1 , 354.Xr vidcontrol 1 , 355.Xr atkbd 4 , 356.Xr atkbdc 4 , 357.Xr kbdmux 4 , 358.Xr keyboard 4 , 359.Xr screen 4 , 360.Xr splash 4 , 361.Xr syscons 4 , 362.Xr ukbd 4 , 363.Xr kbdmap 5 , 364.Xr rc.conf 5 , 365.Xr ttys 5 , 366.Xr config 8 , 367.Xr getty 8 , 368.Xr kldload 8 , 369.Xr moused 8 , 370.Xr vtfontcvt 8 371.Sh HISTORY 372The 373.Nm 374driver first appeared in 375.Fx 9.3 . 376.Sh AUTHORS 377.An -nosplit 378The 379.Nm 380device driver was developed by 381.An \&Ed Schouten Aq Mt ed@FreeBSD.org , 382.An \&Ed Maste Aq Mt emaste@FreeBSD.org , 383and 384.An Aleksandr Rybalko Aq Mt ray@FreeBSD.org , 385with sponsorship provided by the 386.Fx 387Foundation. 388This manual page was written by 389.An Warren Block Aq Mt wblock@FreeBSD.org . 390.Sh CAVEATS 391Paste buffer size is limited by the system value 392.Brq Dv MAX_INPUT , 393the number of bytes that can be stored in the terminal 394input queue, usually 1024 bytes 395(see 396.Xr termios 4 ) . 397