info > pts(4)

πŸ“ NAME

ptmx, pts β€” pseudoterminal master and slave

πŸš€ Quick Reference

Use CaseCommand / DescriptionDetails
πŸ”“ Open pseudoterminal masteropen("/dev/ptmx", ...)Returns a file descriptor for the master and creates a slave in /dev/pts/
πŸ” Get slave device pathptsname(fd)Returns the path of the slave associated with the master
πŸ”‘ Grant access to slavegrantpt(fd)Changes permissions and ownership of the slave device
πŸ”“ Unlock slaveunlockpt(fd)Unlocks the slave so it can be opened
πŸ”„ Data flow between master and slaveWrite to master β†’ read from slave as input; write to slave β†’ read from master as inputBidirectional communication like a real terminal
πŸ–₯️ Terminal emulatorsUsed by xterm(1)Interpret master data as terminal input
🌐 Remote loginUsed by sshd(8)Master data sent over network to client terminal
πŸ”€ Feed input to pipe‑refusing programse.g., su(1), passwd(1)Pseudoterminals bypass pipe/stdio restrictions

πŸ“– DESCRIPTION

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)).

πŸ—‚οΈ FILES

⚠️ NOTES

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.

πŸ”— SEE ALSO

πŸ“œ COLOPHON

This page is part of release 5.10 of the Linux man‑pages project. A description of the project, information about reporting bugs, and the latest version of this page, can be found at https://www.kernel.org/doc/man-pages/.

pts(4)
πŸ“ NAME πŸš€ Quick Reference πŸ“– DESCRIPTION πŸ—‚οΈ FILES ⚠️ NOTES πŸ”— SEE ALSO πŸ“œ COLOPHON

Generated by phpman v4.9.26-1-g511901d Author: Che Dong Under GNU General Public License
2026-08-06 14:02 @216.73.217.24
CrawledBy Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)
Valid XHTML 1.0 Transitional!Valid CSS!
Enhanced by LLM: deepseek-v4-flash / taotoken.net / www.chedong.com - original format