TIOCLINUX(2const) TIOCLINUX(2const)

TIOCLINUX - ioctls for console terminal and virtual consoles

#include <linux/tiocl.h>  /* Definition of TIOCL_* constants */
#include <sys/ioctl.h>
int ioctl(int fd, TIOCLINUX, void *argp);

The action of the following ioctls depends on the first byte in the struct pointed to by argp, referred to here as the subcode. These are legal only for the superuser or the owner of the current terminal.

Dump the screen. Disappeared in Linux 1.1.92. (With Linux 1.1.92 or later, read from /dev/vcsN or /dev/vcsaN instead.)
Get task information. Disappeared in Linux 1.1.92.
Set selection. argp points to a

struct {
    char  subcode;
    short xs, ys, xe, ye;
    short sel_mode;
};

xs and ys are the starting column and row. xe and ye are the ending column and row. (Upper left corner is row=column=1.) sel_mode is 0 for character-by-character selection, 1 for word-by-word selection, or 2 for line-by-line selection. The indicated screen characters are highlighted and saved in a kernel buffer.
Since Linux 6.7, using this subcode requires the CAP_SYS_ADMIN capability.
Paste selection. The characters in the selection buffer are written to fd.
Since Linux 6.7, using this subcode requires the CAP_SYS_ADMIN capability.
Unblank the screen.
Sets contents of a 256-bit look up table defining characters in a "word", for word-by-word selection. (Since Linux 1.1.32.)
Since Linux 6.7, using this subcode requires the CAP_SYS_ADMIN capability.
argp points to a char which is set to the value of the kernel variable shift_state. (Since Linux 1.1.32.)
argp points to a char which is set to the value of the kernel variable report_mouse. (Since Linux 1.1.33.)
Dump screen width and height, cursor position, and all the character-attribute pairs. (Linux 1.1.67 through Linux 1.1.91 only. With Linux 1.1.92 or later, read from /dev/vcsa* instead.)
Restore screen width and height, cursor position, and all the character-attribute pairs. (Linux 1.1.67 through Linux 1.1.91 only. With Linux 1.1.92 or later, write to /dev/vcsa* instead.)
Handles the Power Saving feature of the new generation of monitors. VESA screen blanking mode is set to argp[1], which governs what screen blanking does:
0
Screen blanking is disabled.
1
The current video adapter register settings are saved, then the controller is programmed to turn off the vertical synchronization pulses. This puts the monitor into "standby" mode. If your monitor has an Off_Mode timer, then it will eventually power down by itself.
2
The current settings are saved, then both the vertical and horizontal synchronization pulses are turned off. This puts the monitor into "off" mode. If your monitor has no Off_Mode timer, or if you want your monitor to power down immediately when the blank_timer times out, then you choose this option. (Caution: Powering down frequently will damage the monitor.) (Since Linux 1.1.76.)
Change target of kernel messages ("console"): by default, and if this is set to 0, messages are written to the currently active VT. The VT to write to is a single byte following subcode. (Since Linux 2.5.36.)
Returns the number of VT currently in foreground. (Since Linux 2.5.36.)
Scroll the foreground VT by the specified amount of lines down, or half the screen if 0. lines is *(((int32_t *)&subcode) + 1). (Since Linux 2.5.67.)
Blank the foreground VT, ignoring "pokes" (typing): can only be unblanked explicitly (by switching VTs, to text mode, etc.). (Since Linux 2.5.71.)
Returns the number of VT currently blanked, 0 if none. (Since Linux 2.5.71.)
Never used.
Returns target of kernel messages. (Since Linux 2.6.17.)

On success, 0 is returned (except where indicated). On failure, -1 is returned, and errno is set to indicate the error.

argp is invalid.
Insufficient permission.

Linux.

ioctl(2), ioctl_console(2)

2024-06-13 Linux man-pages 6.9.1