# man > pty(7)

[_pty_(7)](https://www.chedong.com/phpMan.php/man/pty/7/markdown)                            Miscellaneous Information Manual                            [_pty_(7)](https://www.chedong.com/phpMan.php/man/pty/7/markdown)

## NAME
       pty - pseudoterminal interfaces

## DESCRIPTION
       A  pseudoterminal  (sometimes  abbreviated "pty") is a pair of virtual character devices that
       provide a bidirectional communication channel.  One end of the channel is called the  _master_;
       the other end is called the _slave_.

       The slave end of the pseudoterminal provides an interface that behaves exactly like a classi‐
       cal  terminal.   A process that expects to be connected to a terminal, can open the slave end
       of a pseudoterminal and then be driven by a program that has opened the master end.  Anything
       that is written on the master end is provided to the process on the slave end  as  though  it
       was  input  typed  on a terminal.  For example, writing the interrupt character (usually con‐
       trol-C) to the master device would cause an interrupt signal (**SIGINT**) to be generated for the
       foreground process group that is connected to the slave.  Conversely, anything that is  writ‐
       ten  to  the  slave end of the pseudoterminal can be read by the process that is connected to
       the master end.

       Data flow between master and slave is handled asynchronously, much  like  data  flow  with  a
       physical  terminal.   Data written to the slave will be available at the master promptly, but
       may not be available immediately.  Similarly, there may be a small processing delay between a
       write to the master, and the effect being visible at the slave.

       Historically, two pseudoterminal APIs have evolved: BSD and System V.  SUSv1  standardized  a
       pseudoterminal API based on the System V API, and this API should be employed in all new pro‐
       grams that use pseudoterminals.

       Linux  provides  both BSD-style and (standardized) System V-style pseudoterminals.  System V-
       style terminals are commonly called UNIX 98 pseudoterminals on Linux systems.

       Since Linux 2.6.4, BSD-style pseudoterminals are considered deprecated: support can  be  dis‐
       abled  when  building  the kernel by disabling the **CONFIG_LEGACY_PTYS **option.  (Starting with
       Linux 2.6.30, that option is disabled by default in the mainline kernel.)  UNIX 98 pseudoter‐
       minals should be used in new applications.

### UNIX 98 pseudoterminals
       An unused UNIX 98 pseudoterminal master is opened by calling [**posix_openpt**(3)](https://www.chedong.com/phpMan.php/man/posixopenpt/3/markdown).  (This function
       opens the master clone device, _/dev/ptmx_; see [**pts**(4)](https://www.chedong.com/phpMan.php/man/pts/4/markdown).)  After performing any program-specific
       initializations, changing the ownership and permissions of the slave device using [**grantpt**(3)](https://www.chedong.com/phpMan.php/man/grantpt/3/markdown),
       and unlocking the slave using [**unlockpt**(3)](https://www.chedong.com/phpMan.php/man/unlockpt/3/markdown)), the corresponding slave device can be  opened  by
       passing the name returned by [**ptsname**(3)](https://www.chedong.com/phpMan.php/man/ptsname/3/markdown) in a call to [**open**(2)](https://www.chedong.com/phpMan.php/man/open/2/markdown).

       The  Linux  kernel imposes a limit on the number of available UNIX 98 pseudoterminals.  Up to
       and including Linux 2.6.3,  this  limit  is  configured  at  kernel  compilation  time  (**CON‐**
       **FIG_UNIX98_PTYS**),  and  the permitted number of pseudoterminals can be up to 2048, with a de‐
       fault  setting  of  256.   Since  Linux  2.6.4,  the  limit  is  dynamically  adjustable  via
       _/proc/sys/kernel/pty/max_,  and  a  corresponding file, _/proc/sys/kernel/pty/nr_, indicates how
       many pseudoterminals are currently in use.  For further  details  on  these  two  files,  see
       [**proc**(5)](https://www.chedong.com/phpMan.php/man/proc/5/markdown).

### BSD pseudoterminals
       BSD-style pseudoterminals are provided as precreated pairs, with names of the form _/dev/ptyXY_
       (master)  and _/dev/ttyXY_ (slave), where X is a letter from the 16-character set [p-za-e], and
       Y is a letter from the 16-character set [0-9a-f].  (The precise range of letters in these two
       sets varies across UNIX implementations.)  For example, _/dev/ptyp1_ and _/dev/ttyp1_  constitute
       a  BSD  pseudoterminal  pair.   A  process  finds  an unused pseudoterminal pair by trying to
       [**open**(2)](https://www.chedong.com/phpMan.php/man/open/2/markdown) each pseudoterminal master until an open succeeds.  The corresponding  pseudoterminal
       slave (substitute "tty" for "pty" in the name of the master) can then be opened.

## FILES
       _/dev/ptmx_
              UNIX 98 master clone device

       _/dev/pts/*_
              UNIX 98 slave devices

       _/dev/pty[p-za-e][0-9a-f]_
              BSD master devices

       _/dev/tty[p-za-e][0-9a-f]_
              BSD slave devices

## NOTES
       Pseudoterminals  are  used by applications such as network login services ([**ssh**(1)](https://www.chedong.com/phpMan.php/man/ssh/1/markdown), [**rlogin**(1)](https://www.chedong.com/phpMan.php/man/rlogin/1/markdown),
       [**telnet**(1)](https://www.chedong.com/phpMan.php/man/telnet/1/markdown)), terminal emulators such as [**xterm**(1)](https://www.chedong.com/phpMan.php/man/xterm/1/markdown), [**script**(1)](https://www.chedong.com/phpMan.php/man/script/1/markdown), [**screen**(1)](https://www.chedong.com/phpMan.php/man/screen/1/markdown), [**tmux**(1)](https://www.chedong.com/phpMan.php/man/tmux/1/markdown),  [**unbuffer**(1)](https://www.chedong.com/phpMan.php/man/unbuffer/1/markdown),
       and [**expect**(1)](https://www.chedong.com/phpMan.php/man/expect/1/markdown).

       A  description of the **TIOCPKT [ioctl**(2)](https://www.chedong.com/phpMan.php/man/ioctl/2/markdown), which controls packet mode operation, can be found in
       [**ioctl_tty**(2)](https://www.chedong.com/phpMan.php/man/ioctltty/2/markdown).

       The BSD [**ioctl**(2)](https://www.chedong.com/phpMan.php/man/ioctl/2/markdown) operations **TIOCSTOP**, **TIOCSTART**, **TIOCUCNTL**, and **TIOCREMOTE **have not been  im‐
       plemented under Linux.

## SEE ALSO
       [**ioctl_tty**(2)](https://www.chedong.com/phpMan.php/man/ioctltty/2/markdown), [**select**(2)](https://www.chedong.com/phpMan.php/man/select/2/markdown), [**setsid**(2)](https://www.chedong.com/phpMan.php/man/setsid/2/markdown), [**forkpty**(3)](https://www.chedong.com/phpMan.php/man/forkpty/3/markdown), [**openpty**(3)](https://www.chedong.com/phpMan.php/man/openpty/3/markdown), [**termios**(3)](https://www.chedong.com/phpMan.php/man/termios/3/markdown), [**pts**(4)](https://www.chedong.com/phpMan.php/man/pts/4/markdown), [**tty**(4)](https://www.chedong.com/phpMan.php/man/tty/4/markdown)

Linux man-pages 6.7                          2023-11-19                                       [_pty_(7)](https://www.chedong.com/phpMan.php/man/pty/7/markdown)
