156

Possible Duplicate:
What is the exact difference between a 'terminal', a 'shell', a 'tty' and a 'console'?

I always see pts and tty when I use the who command but I never understand how they are different? Can somebody please explain me this?

2 Answers2

163

A tty is a native terminal device, the backend is either hardware or kernel emulated.

A pty (pseudo terminal device) is a terminal device which is emulated by an other program (example: xterm, screen, or ssh are such programs). A pts is the slave part of a pty.

(More info can be found in man pty.)

Short summary:

A pty is created by a process through posix_openpt() (which usually opens the special device /dev/ptmx), and is constituted by a pair of bidirectional character devices:

  1. The master part, which is the file descriptor obtained by this process through this call, is used to emulate a terminal. After some initialization, the second part can be unlocked with unlockpt(), and the master is used to receive or send characters to this second part (slave).

  2. The slave part, which is anchored in the filesystem as /dev/pts/x (the real name can be obtained by the master through ptsname() ) behaves like a native terminal device (/dev/ttyx). In most cases, a shell is started that uses it as a controlling terminal.

  • 1
    What do you mean by the backend is hardware? – Motivated Jan 14 '19 at 17:07
  • 2
    @Motivated: https://en.wikipedia.org/wiki/Computer_terminal – Stéphane Gimenez Jan 14 '19 at 17:10
  • 1
    Thanks. I take it that's a historical reference as opposed to contemporary use i.e. it used to be backed by hardware. – Motivated Jan 14 '19 at 17:54
  • 3
    So basically a tty is something where there's no user process "on the other end"? – extremeaxe5 Nov 11 '19 at 16:21
  • Oldish thread but here's my 2 cents. When hardware was much more expensive, companies would have a central, multi-user system (Unix, Mainframe, etc) with a bunch of connected "dumb" terminals. These just had a screen and keyboard and very simple logic that only knew how to send keystrokes down the wire to the server and to receive screen updates. All actual processing was done on the server. This is what is meant by "backed by hardware". Once personal computers came around, "terminal emulators were created to emulate these dumb terminals and allow someone with a PC to interact with the server. – grim_i_am May 03 '22 at 08:34
58

A tty is a regular terminal device (the console on your server, for example).
A pts is a psuedo terminal slave (an xterm or an ssh connection).

man pts has a verbose description of pseudo terminals.

Kevin
  • 40,767
rjewell
  • 959