Getty: Unterschied zwischen den Versionen

Aus Foxwiki
Die Seite wurde neu angelegt: „{{Short description|Unix program running on a host computer that manages physical or virtual terminals}} {{Infobox software | name = | title = getty | logo = <!-- Image name is enough --> | logo caption = | logo_size = | logo_alt = | screenshot = <!-- Image name is enough --> | caption = | screenshot_size = | screenshot_alt…“
 
Keine Bearbeitungszusammenfassung
Zeile 1: Zeile 1:
{{Short description|Unix program running on a host computer that manages physical or virtual terminals}}
Unix program running on a host computer that manages physical or virtual terminals
{{Infobox software
 
| name                  =
# Infobox  
| title                  = getty
* getty
| logo                  = <!-- Image name is enough -->
* [[Ken Thompson]]
| logo caption          =
* [[C (programming language)|C]]
| logo_size              =
* UNIX-like
| logo_alt              =
| screenshot            = <!-- Image name is enough -->
| caption                =
| screenshot_size        =
| screenshot_alt        =
| collapsible            =
| author                =
| developer              = [[Ken Thompson]]
| released              = <!-- {{Start date and age|YYYY|MM|DD|df=yes/no}} -->
| discontinued          =
| latest release version =
| latest release date    = <!-- {{Start date and age|YYYY|MM|DD|df=yes/no}} -->
| latest preview version =
| latest preview date    = <!-- {{Start date and age|YYYY|MM|DD|df=yes/no}} -->
| status                =
| programming language  = [[C (programming language)|C]]
| operating system      = UNIX / FreeBSD <!-- Linux is just a kernel -->
| platform              =
| size                  =
| language              =
| language count        = <!-- DO NOT include this parameter unless you know what it does -->
| language footnote      =
| genre                  =
| license                = Various
| website                =
}}


<code>'''getty'''</code>, short for "get tty", is a [[Unix]] program running on a [[host computer]] that manages physical or virtual [[computer terminal|terminal]]s (TTYs). When it detects a connection, it prompts for a username and runs the '[[login]]' program to authenticate the user.
<code>'''getty'''</code>, short for "get tty", is a [[Unix]] program running on a [[host computer]] that manages physical or virtual [[computer terminal|terminal]]s (TTYs). When it detects a connection, it prompts for a username and runs the '[[login]]' program to authenticate the user.
Zeile 46: Zeile 20:
* [[GNU Core Utilities]] (implements stty)
* [[GNU Core Utilities]] (implements stty)
* [[util-linux]], that provides a getty
* [[util-linux]], that provides a getty
==References==
{{Reflist}}


==External links==
==External links==
Zeile 55: Zeile 26:


[[Category:Unix software]]
[[Category:Unix software]]
{{Unix-stub}}

Version vom 1. Januar 2025, 00:57 Uhr

Unix program running on a host computer that manages physical or virtual terminals

  1. Infobox

getty, short for "get tty", is a Unix program running on a host computer that manages physical or virtual terminals (TTYs). When it detects a connection, it prompts for a username and runs the 'login' program to authenticate the user.

Originally, on traditional Unix systems, getty handled connections to serial terminals (often Teletype machines) connected to a host computer. The tty part of the name stands for Teletype, but has come to mean any type of text terminal. One getty process serves one terminal. In some systems, for example, Solaris, getty was replaced by ttymon.

Personal computers running Unix-like operating systems, even if they do not provide any remote login services, may still use getty as a means of logging in on a local virtual console.

Instead of the login program, getty may also be set up by the system administrator to run any other program, for example pppd (point-to-point protocol daemon) to provide a dial-up Internet connection.

See also

External links