blob: 412b85dd214ec9d526f18b33446c716ebace27ca [file] [log] [blame]
//po4a: entry man manual
////
Copyright 1993 Rickard E. Faith (faith@cs.unc.edu)
May be distributed under the GNU General Public License
////
= login(1)
:doctype: manpage
:man manual: User Commands
:man source: util-linux {release-version}
:page-layout: base
:command: login
== NAME
login - begin session on the system
== SYNOPSIS
*login* [*-p*] [*-h* _host_] [*-H*] [*-f* _username_|_username_]
== DESCRIPTION
*login* is used when signing onto a system. If no argument is given, *login* prompts for the username.
The user is then prompted for a password, where appropriate. Echoing is disabled to prevent revealing the password. Only a number of password failures are permitted before *login* exits and the communications link is severed. See *LOGIN_RETRIES* in CONFIG FILE ITEMS section.
If password aging has been enabled for the account, the user may be prompted for a new password before proceeding. In such case old password must be provided and the new password entered before continuing. Please refer to *passwd*(1) for more information.
The user and group ID will be set according to their values in the _/etc/passwd_ file. There is one exception if the user ID is zero. In this case, only the primary group ID of the account is set. This should allow the system administrator to login even in case of network problems. The environment variable values for *$HOME*, *$USER*, *$SHELL*, *$PATH*, *$LOGNAME*, and *$MAIL* are set according to the appropriate fields in the password entry. *$PATH* defaults to _/usr/local/bin:/bin:/usr/bin_ for normal users, and to _/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin_ for root, if not otherwise configured.
The environment variable *$TERM* will be preserved, if it exists, else it will be initialized to the terminal type on your tty. Other environment variables are preserved if the *-p* option is given.
Then the user's shell is started. If no shell is specified for the user in _/etc/passwd_, then _/bin/sh_ is used. If there is no home directory specified in _/etc/passwd_, then _/_ is used, followed by _.hushlogin_ check as described below.
If the file _.hushlogin_ exists, then a "quiet" login is performed. This disables the checking of mail and the printing of the last login time and message of the day. Otherwise, if _/var/log/lastlog_ exists, the last login time is printed, and the current login is recorded.
== OPTIONS
*-p*::
Used by *getty*(8) to tell *login* to preserve the environment.
*-f*::
Used to skip a login authentication. This option is usually used by the *getty*(8) autologin feature.
*-h*::
Used by other servers (such as *telnetd*(8) to pass the name of the remote host to *login* so that it can be placed in utmp and wtmp. Only the superuser is allowed use this option.
+
Note that the *-h* option has an impact on the *PAM service* *name*. The standard service name is _login_, but with the *-h* option, the name is _remote_. It is necessary to create proper PAM config files (for example, _/etc/pam.d/login_ and _/etc/pam.d/remote_).
*-H*::
Used by other servers (for example, *telnetd*(8)) to tell *login* that printing the hostname should be suppressed in the login: prompt. See also *LOGIN_PLAIN_PROMPT* below.
*--help*::
Display help text and exit.
*-V*, *--version*::
Display version information and exit.
== CONFIG FILE ITEMS
*login* reads the _/etc/login.defs_ configuration file (see login.defs(5)). Note that the configuration file could be distributed with another package (usually shadow-utils). The following configuration items are relevant for *login*:
*MOTD_FILE* (string)::
Specifies a ":" delimited list of "message of the day" files and directories to be displayed upon login. If the specified path is a directory then displays all files with .motd file extension in version-sort order from the directory.
+
The default value is _/usr/share/misc/motd:/run/motd:/etc/motd_. If the *MOTD_FILE* item is empty or a quiet login is enabled, then the message of the day is not displayed. Note that the same functionality is also provided by the *pam_motd*(8) PAM module.
+
The directories in the *MOTD_FILE* are supported since version 2.36.
+
Note that *login* does not implement any filenames overriding behavior like pam_motd (see also *MOTD_FIRSTONLY*), but all content from all files is displayed. It is recommended to keep extra logic in content generators and use _/run/motd.d_ rather than rely on overriding behavior hardcoded in system tools.
*MOTD_FIRSTONLY* (boolean)::
Forces *login* to stop display content specified by *MOTD_FILE* after the first accessible item in the list. Note that a directory is one item in this case. This option allows *login* semantics to be configured to be more compatible with pam_motd. The default value is _no_.
*LOGIN_PLAIN_PROMPT* (boolean)::
Tell *login* that printing the hostname should be suppressed in the login: prompt. This is an alternative to the *-H* command line option. The default value is _no_.
*LOGIN_TIMEOUT* (number)::
Maximum time in seconds for login. The default value is _60_.
*LOGIN_RETRIES* (number)::
Maximum number of login retries in case of a bad password. The default value is _3_.
*LOGIN_KEEP_USERNAME* (boolean)::
Tell *login* to only re-prompt for the password if authentication failed, but the username is valid. The default value is _no_.
*FAIL_DELAY* (number)::
Delay in seconds before being allowed another three tries after a login failure. The default value is _5_.
*TTYPERM* (string)::
The terminal permissions. The default value is _0600_ or _0620_ if tty group is used.
*TTYGROUP* (string)::
The login tty will be owned by the *TTYGROUP*. The default value is _tty_. If the *TTYGROUP* does not exist, then the ownership of the terminal is set to the user's primary group.
+
The *TTYGROUP* can be either the name of a group or a numeric group identifier.
*HUSHLOGIN_FILE* (string)::
If defined, this file can inhibit all the usual chatter during the login sequence. If a full pathname (for example, _/etc/hushlogins_) is specified, then hushed mode will be enabled if the user's name or shell are found in the file. If this global hush login file is empty then the hushed mode will be enabled for all users.
+
If a full pathname is not specified, then hushed mode will be enabled if the file exists in the user's home directory.
+
The default is to check _/etc/hushlogins_ and if it does not exist then _~/.hushlogin_.
+
If the *HUSHLOGIN_FILE* item is empty, then all the checks are disabled.
*DEFAULT_HOME* (boolean)::
Indicate if login is allowed if we cannot change directory to the home directory. If set to _yes_, the user will login in the root (/) directory if it is not possible to change directory to their home. The default value is _yes_.
*LASTLOG_UID_MAX* (unsigned number)::
Highest user ID number for which the _lastlog_ entries should be updated. As higher user IDs are usually tracked by remote user identity and authentication services there is no need to create a huge sparse _lastlog_ file for them. No LASTLOG_UID_MAX option present in the configuration means that there is no user ID limit for writing _lastlog_ entries. The default value is _ULONG_MAX_.
*LOG_UNKFAIL_ENAB* (boolean)::
Enable display of unknown usernames when login failures are recorded. The default value is _no_.
+
Note that logging unknown usernames may be a security issue if a user enters their password instead of their login name.
*ENV_PATH* (string)::
If set, it will be used to define the *PATH* environment variable when a regular user logs in. The default value is _/usr/local/bin:/bin:/usr/bin_.
*ENV_ROOTPATH* (string)::
*ENV_SUPATH* (string)::
If set, it will be used to define the PATH environment variable when the superuser logs in. *ENV_ROOTPATH* takes precedence. The default value is _/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin_.
== FILES
_/var/run/utmp_,
_/var/log/wtmp_,
_/var/log/lastlog_,
_/var/spool/mail/*_,
_/etc/motd_,
_/etc/passwd_,
_/etc/nologin_,
_/etc/pam.d/login_,
_/etc/pam.d/remote_,
_/etc/hushlogins_,
_$HOME/.hushlogin_
== BUGS
The undocumented BSD *-r* option is not supported. This may be required by some *rlogind*(8) programs.
A recursive login, as used to be possible in the good old days, no longer works; for most purposes *su*(1) is a satisfactory substitute. Indeed, for security reasons, *login* does a *vhangup*(2) system call to remove any possible listening processes on the tty. This is to avoid password sniffing. If one uses the command *login*, then the surrounding shell gets killed by *vhangup*(2) because it's no longer the true owner of the tty. This can be avoided by using *exec login* in a top-level shell or xterm.
== AUTHORS
Derived from BSD login 5.40 (5/9/89) by mailto:glad@daimi.dk[Michael Glad] for HP-UX. Ported to Linux 0.12: mailto:poe@daimi.aau.dk[Peter Orbaek]. Rewritten to a PAM-only version by mailto:kzak@redhat.com[Karel Zak]
== SEE ALSO
*mail*(1),
*passwd*(1),
*passwd*(5),
*utmp*(5),
*environ*(7),
*getty*(8),
*init*(8),
*lastlog*(8),
*shutdown*(8)
include::man-common/bugreports.adoc[]
include::man-common/footer.adoc[]
ifdef::translation[]
include::man-common/translation.adoc[]
endif::[]