]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.bin/login/login.1
This commit was generated by cvs2svn to compensate for changes in r86223,
[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 .Nm Login
109 then records an entry in the
110 .Xr wtmp 5
111 and
112 .Xr utmp 5
113 files and executes the user's command interpreter.
114 .Pp
115 .Nm Login
116 enters information into the environment (see
117 .Xr environ 7 )
118 specifying the user's home directory (HOME), command interpreter (SHELL),
119 search path (PATH), terminal type (TERM) and user name (both LOGNAME and
120 USER).
121 Other environment variables may be set due to entries in the login
122 class capabilities database, for the login class assigned in the
123 user's system passwd record.
124 The login class also controls the maximum and current process resource
125 limits granted to a login, process priorities and many other aspects of
126 a user's login environment.
127 .Pp
128 Some shells may provide a builtin
129 .Nm
130 command which is similar or identical to this utility.
131 Consult the
132 .Xr builtin 1
133 manual page.
134 .Sh FILES
135 .Bl -tag -width ".Pa /etc/login.access" -compact
136 .It Pa /etc/fbtab
137 changes device protections
138 .It Pa /etc/login.access
139 login access control table
140 .It Pa /etc/login.conf
141 login class capabilities database
142 .It Pa /etc/motd
143 message-of-the-day
144 .It Pa /var/run/utmp
145 current logins
146 .It Pa /var/log/lastlog
147 last login account records
148 .It Pa /var/log/wtmp
149 login account records
150 .It Pa /var/mail/user
151 system mailboxes
152 .It Pa \&.hushlogin
153 makes login quieter
154 .It Pa /etc/auth.conf
155 configure authentication services
156 .It Pa /etc/pam.conf
157 .Nm
158 uses
159 .Pa /etc/pam.conf
160 entries with service name
161 .Dq login
162 .El
163 .Sh SEE ALSO
164 .Xr builtin 1 ,
165 .Xr chpass 1 ,
166 .Xr csh 1 ,
167 .Xr passwd 1 ,
168 .Xr rlogin 1 ,
169 .Xr getpass 3 ,
170 .Xr fbtab 5 ,
171 .Xr login.access 5 ,
172 .Xr login.conf 5 ,
173 .Xr utmp 5 ,
174 .Xr environ 7 ,
175 .Xr pam 8
176 .Sh HISTORY
177 A
178 .Nm
179 utility appeared in
180 .At v6 .