]> git.saurik.com Git - apple/system_cmds.git/blame_incremental - login.tproj/login.1
system_cmds-496.tar.gz
[apple/system_cmds.git] / login.tproj / login.1
... / ...
CommitLineData
1.\" Copyright (c) 1980, 1990, 1993
2.\" The Regents of the University of California. All rights reserved.
3.\"
4.\" Redistribution and use in source and binary forms, with or without
5.\" modification, are permitted provided that the following conditions
6.\" are met:
7.\" 1. Redistributions of source code must retain the above copyright
8.\" notice, this list of conditions and the following disclaimer.
9.\" 2. Redistributions in binary form must reproduce the above copyright
10.\" notice, this list of conditions and the following disclaimer in the
11.\" documentation and/or other materials provided with the distribution.
12.\" 3. All advertising materials mentioning features or use of this software
13.\" must display the following acknowledgement:
14.\" This product includes software developed by the University of
15.\" California, Berkeley and its contributors.
16.\" 4. Neither the name of the University nor the names of its contributors
17.\" may be used to endorse or promote products derived from this software
18.\" without specific prior written permission.
19.\"
20.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30.\" SUCH DAMAGE.
31.\"
32.\" @(#)login.1 8.2 (Berkeley) 5/5/94
33.\" $FreeBSD: src/usr.bin/login/login.1,v 1.33 2007/11/30 11:02:36 philip Exp $
34.\"
35.Dd September 13, 2006
36.Dt LOGIN 1
37.Os
38.Sh NAME
39.Nm login
40.Nd log into the computer
41.Sh SYNOPSIS
42.Nm
43.Op Fl pq
44.Op Fl h Ar hostname
45.Op Ar user
46.Nm
47.Fl f
48.Op Fl lpq
49.Op Fl h Ar hostname
50.Op Ar user Op Ar prog Op Ar args...
51.Sh DESCRIPTION
52The
53.Nm
54utility logs users (and pseudo-users) into the computer system.
55.Pp
56If no user is specified, or if a user is specified and authentication
57of the user fails,
58.Nm
59prompts for a user name.
60Authentication of users is configurable via
61.Xr pam 8 .
62Password authentication is the default.
63.Pp
64The following options are available:
65.Bl -tag -width indent
66.It Fl f
67When a user name is specified, this option indicates that proper
68authentication has already been done and that no password need be
69requested.
70This option may only be used by the super-user or when an already
71logged in user is logging in as themselves.
72.Pp
73With the
74.Fl f
75option, an alternate program (and any arguments) may be run instead of the
76user's default shell.
77The program and arguments follows the user name.
78.It Fl h
79Specify the host from which the connection was received.
80It is used by various daemons such as
81.Xr telnetd 8 .
82This option may only be used by the super-user.
83.It Fl l
84Tells the program executed by
85.Nm
86that this is not a login session (by convention, a login session is
87signalled to the program with a hyphen as the first character of
88.Em argv[0] ;
89this option disables that), and prevents it from chdir(2)ing to the user's home directory.
90The default is to add the hyphen (this is a login session).
91.It Fl p
92By default,
93.Nm
94discards any previous environment.
95The
96.Fl p
97option disables this behavior.
98.It Fl q
99This forces quiet logins, as if a
100.Pa .hushlogin
101is present.
102.El
103.Pp
104If the file
105.Pa /etc/nologin
106exists,
107.Nm
108dislays its contents to the user and exits.
109This is used by
110.Xr shutdown 8
111to prevent users from logging in when the system is about to go down.
112.Pp
113Immediately after logging a user in,
114.Nm
115displays the system copyright notice, the date and time the user last
116logged in, the message of the day as well as other information.
117If the file
118.Pa .hushlogin
119exists in the user's home directory, all of these messages are suppressed.
120.Fl q
121is specified, all of these messages are suppressed.
122This is to simplify logins for non-human users, such as
123.Xr uucp 1 .
124.Nm
125then records an entry in
126.Xr utmpx 5
127and the like, and executes the user's command interpreter (or the program
128specified on the command line if
129.Fl f
130is specified).
131.Pp
132The
133.Nm
134utility enters information into the environment (see
135.Xr environ 7 )
136specifying the user's home directory (HOME), command interpreter (SHELL),
137search path (PATH), terminal type (TERM) and user name (both LOGNAME and
138USER).
139.Pp
140Some shells may provide a builtin
141.Nm
142command which is similar or identical to this utility.
143Consult the
144.Xr builtin 1
145manual page.
146.Pp
147The
148.Nm
149utility will submit an audit record when login succeeds or fails.
150Failure to determine the current auditing state will
151result in an error exit from
152.Nm .
153.Sh FILES
154.Bl -tag -width /var/mail/userXXX -compact
155.It Pa /etc/motd
156message-of-the-day
157.It Pa /etc/nologin
158disallows logins
159.It Pa /var/run/utmpx
160current logins
161.It Pa /var/mail/user
162system mailboxes
163.It Pa \&.hushlogin
164makes login quieter
165.It Pa /etc/pam.d/login
166.Xr pam 8
167configuration file
168.It Pa /etc/security/audit_user
169user flags for auditing
170.It Pa /etc/security/audit_control
171global flags for auditing
172.El
173.Sh SEE ALSO
174.Xr builtin 1 ,
175.Xr chpass 1 ,
176.Xr newgrp 1 ,
177.Xr passwd 1 ,
178.Xr rlogin 1 ,
179.Xr getpass 3 ,
180.Xr utmpx 5 ,
181.Xr environ 7
182.Sh HISTORY
183A
184.Nm
185utility appeared in
186.At v6 .