|
|
pts(4) Kernel Interfaces Manual pts(4)
ptmx, pts - pseudoterminal master and slave
The file /dev/ptmx (the pseudoterminal multiplexor device) is a
character file with major number 5 and minor number 2, usually
with mode 0666 and ownership root:root. It is used to create a
pseudoterminal master and slave pair.
When a process opens /dev/ptmx, it gets a file descriptor for a
pseudoterminal master and a pseudoterminal slave device is created
in the /dev/pts directory. Each file descriptor obtained by
opening /dev/ptmx is an independent pseudoterminal master with its
own associated slave, whose path can be found by passing the file
descriptor to ptsname(3).
Before opening the pseudoterminal slave, you must pass the
master's file descriptor to grantpt(3) and unlockpt(3).
Once both the pseudoterminal master and slave are open, the slave
provides processes with an interface that is identical to that of
a real terminal.
Data written to the slave is presented on the master file
descriptor as input. Data written to the master is presented to
the slave as input.
In practice, pseudoterminals are used for implementing terminal
emulators such as xterm(1), in which data read from the
pseudoterminal master is interpreted by the application in the
same way a real terminal would interpret the data, and for
implementing remote-login programs such as sshd(8), in which data
read from the pseudoterminal master is sent across the network to
a client program that is connected to a terminal or terminal
emulator.
Pseudoterminals can also be used to send input to programs that
normally refuse to read input from pipes (such as su(1), and
passwd(1)).
/dev/ptmx, /dev/pts/*
The Linux support for the above (known as UNIX 98 pseudoterminal
naming) is done using the devpts filesystem, which should be
mounted on /dev/pts.
getpt(3), grantpt(3), ptsname(3), unlockpt(3), pty(7)
This page is part of the man-pages (Linux kernel and C library
user-space interface documentation) project. Information about
the project can be found at
⟨https://www.kernel.org/doc/man-pages/⟩. If you have a bug report
for this manual page, see
⟨https://git.kernel.org/pub/scm/docs/man-pages/man-pages.git/tree/CONTRIBUTING⟩.
This page was obtained from the tarball man-pages-6.15.tar.gz
fetched from
⟨https://mirrors.edge.kernel.org/pub/linux/docs/man-pages/⟩ on
2025-08-11. If you discover any rendering problems in this HTML
version of the page, or you believe there is a better or more up-
to-date source for the page, or you have corrections or
improvements to the information in this COLOPHON (which is not
part of the original manual page), send a mail to
[email protected]
Linux man-pages 6.15 2025-05-17 pts(4)
Pages that refer to this page: getpt(3), grantpt(3), posix_openpt(3), ptsname(3), ttyname(3), unlockpt(3), proc_sys_kernel(5), pty(7)
Copyright and license for this manual page