]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.bin/login/login.1
This commit was generated by cvs2svn to compensate for changes in r98681,
[FreeBSD/FreeBSD.git] / usr.bin / login / login.1
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$
34 .\"
35 .Dd May 5, 1994
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 fp
44 .Op Fl h Ar hostname
45 .Op Ar user
46 .Sh DESCRIPTION
47 The
48 .Nm
49 utility logs users (and pseudo-users) into the computer system.
50 .Pp
51 If no user is specified, or if a user is specified and authentication
52 of the user fails,
53 .Nm
54 prompts for a user name.
55 Authentication of users is done via passwords.
56 .Pp
57 The options are as follows:
58 .Bl -tag -width Ds
59 .It Fl f
60 The
61 .Fl f
62 option is used when a user name is specified to indicate that proper
63 authentication has already been done and that no password need be
64 requested.
65 This option may only be used by the super-user or when an already
66 logged in user is logging in as themselves.
67 .It Fl h
68 The
69 .Fl h
70 option specifies the host from which the connection was received.
71 It is used by various daemons such as
72 .Xr telnetd  8 .
73 This option may only be used by the super-user.
74 .It Fl p
75 By default,
76 .Nm
77 discards any previous environment.
78 The
79 .Fl p
80 option disables this behavior.
81 .El
82 .Pp
83 If the file
84 .Pa /etc/login.access
85 exists,
86 .Nm
87 checks to see if the user and host pair are specifically allowed or denied
88 access.
89 Login access may also be controlled via the login class, which provides
90 allow and deny records based on time, tty and remote host name.
91 .Pp
92 If the file
93 .Pa /etc/fbtab
94 exists,
95 .Nm
96 changes the protection and ownership of certain devices specified in this
97 file.
98 .Pp
99 Immediately after logging a user in,
100 .Nm
101 displays the system copyright notice, the date and time the user last
102 logged in, the message of the day as well as other information.
103 If the file
104 .Dq Pa .hushlogin
105 exists in the user's home directory, all of these messages are suppressed.
106 This is to simplify logins for non-human users, such as
107 .Xr uucp 1 .
108 The
109 .Nm
110 utility then records an entry in the
111 .Xr wtmp 5
112 and
113 .Xr utmp 5
114 files and executes the user's command interpreter.
115 .Pp
116 The
117 .Nm
118 utility enters information into the environment (see
119 .Xr environ 7 )
120 specifying the user's home directory (HOME), command interpreter (SHELL),
121 search path (PATH), terminal type (TERM) and user name (both LOGNAME and
122 USER).
123 Other environment variables may be set due to entries in the login
124 class capabilities database, for the login class assigned in the
125 user's system passwd record.
126 The login class also controls the maximum and current process resource
127 limits granted to a login, process priorities and many other aspects of
128 a user's login environment.
129 .Pp
130 Some shells may provide a builtin
131 .Nm
132 command which is similar or identical to this utility.
133 Consult the
134 .Xr builtin 1
135 manual page.
136 .Sh FILES
137 .Bl -tag -width ".Pa /etc/login.access" -compact
138 .It Pa /etc/fbtab
139 changes device protections
140 .It Pa /etc/login.access
141 login access control table
142 .It Pa /etc/login.conf
143 login class capabilities database
144 .It Pa /etc/motd
145 message-of-the-day
146 .It Pa /var/run/utmp
147 current logins
148 .It Pa /var/log/lastlog
149 last login account records
150 .It Pa /var/log/wtmp
151 login account records
152 .It Pa /var/mail/user
153 system mailboxes
154 .It Pa \&.hushlogin
155 makes login quieter
156 .It Pa /etc/auth.conf
157 configure authentication services
158 .It Pa /etc/pam.conf
159 .Nm
160 uses
161 .Pa /etc/pam.conf
162 entries with service name
163 .Dq login
164 .El
165 .Sh SEE ALSO
166 .Xr builtin 1 ,
167 .Xr chpass 1 ,
168 .Xr csh 1 ,
169 .Xr passwd 1 ,
170 .Xr rlogin 1 ,
171 .Xr getpass 3 ,
172 .Xr fbtab 5 ,
173 .Xr login.access 5 ,
174 .Xr login.conf 5 ,
175 .Xr utmp 5 ,
176 .Xr environ 7 ,
177 .Xr pam 8
178 .Sh HISTORY
179 A
180 .Nm
181 utility appeared in
182 .At v6 .