]> git.ipfire.org Git - thirdparty/man-pages.git/blame - man5/passwd.5
getent.1, _syscall.2, acct.2, adjtimex.2, bdflush.2, brk.2, cacheflush.2, getsid...
[thirdparty/man-pages.git] / man5 / passwd.5
CommitLineData
3d54a910
MK
1.\" Copyright (c) 1993 Michael Haardt (michael@moria.de),
2.\" Fri Apr 2 11:32:09 MET DST 1993
fea681da 3.\"
1dd72f9c 4.\" %%%LICENSE_START(GPLv2+_DOC_FULL)
fea681da
MK
5.\" This is free documentation; you can redistribute it and/or
6.\" modify it under the terms of the GNU General Public License as
7.\" published by the Free Software Foundation; either version 2 of
8.\" the License, or (at your option) any later version.
9.\"
10.\" The GNU General Public License's references to "object code"
11.\" and "executables" are to be interpreted as the output of any
12.\" document formatting or typesetting system, including
13.\" intermediate and printed output.
14.\"
15.\" This manual is distributed in the hope that it will be useful,
16.\" but WITHOUT ANY WARRANTY; without even the implied warranty of
17.\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18.\" GNU General Public License for more details.
19.\"
20.\" You should have received a copy of the GNU General Public
c715f741
MK
21.\" License along with this manual; if not, see
22.\" <http://www.gnu.org/licenses/>.
6a8d8745 23.\" %%%LICENSE_END
fea681da
MK
24.\"
25.\" Modified Sun Jul 25 10:46:28 1993 by Rik Faith (faith@cs.unc.edu)
26.\" Modified Sun Aug 21 18:12:27 1994 by Rik Faith (faith@cs.unc.edu)
27.\" Modified Sun Jun 18 01:53:57 1995 by Andries Brouwer (aeb@cwi.nl)
28.\" Modified Mon Jan 5 20:24:40 MET 1998 by Michael Haardt
29.\" (michael@cantor.informatik.rwth-aachen.de)
c3e1cb40 30.TH PASSWD 5 2012-05-03 "Linux" "Linux Programmer's Manual"
fea681da
MK
31.SH NAME
32passwd \- password file
33.SH DESCRIPTION
df0c9b98
MK
34The
35.IR /etc/passwd
36file is a text file that describes user login accounts for the system.
37It should have read permission allowed for all users (many utilities, like
fea681da 38.BR ls (1)
18701562 39use it to map user IDs to usernames), but write access only for the
fea681da
MK
40superuser.
41.PP
42In the good old days there was no great problem with this general
c13182ef
MK
43read permission.
44Everybody could read the encrypted passwords, but the
df0c9b98 45hardware was too slow to crack a well-chosen password, and moreover the
c13182ef
MK
46basic assumption used to be that of a friendly user-community.
47These days many people run some version of the shadow password suite, where
fea681da 48.I /etc/passwd
c1b273fc 49has an \(aqx\(aq character in the password field,
30f7100e 50and the encrypted passwords are in
df0c9b98 51.IR /etc/shadow ,
fea681da
MK
52which is readable by the superuser only.
53.PP
c3e1cb40
MK
54If the encrypted password, whether in
55.I /etc/passwd
56or in
57.IR /etc/shadow ,
58is an empty string, login is allowed without even asking for a password.
59Note that this functionality may be intentionally disabled in applications,
60or configurable (for example using the "nullok" or "nonull" arguments to
61pam_unix.so).
62.PP
63If the encrypted password in
64.I /etc/passwd
65is "\fI*NP*\fP" (without the quotes),
66the shadow record should be obtained from an NIS+ server.
67.PP
df0c9b98 68Regardless of whether shadow passwords are used, many system administrators
156f55f6 69use an asterisk (*) in the encrypted password field to make sure
fea681da 70that this user can not authenticate him- or herself using a
6387216b 71password.
df0c9b98 72(But see NOTES below.)
fea681da 73.PP
156f55f6 74If you create a new login, first put an asterisk (*) in the password field,
fea681da
MK
75then use
76.BR passwd (1)
77to set it.
78.PP
60017fa5
MK
79Each line of the file describes a single user,
80and contains seven colon-separated fields:
fea681da
MK
81.sp
82.RS
60017fa5 83name:password:UID:GID:GECOS:directory:shell
fea681da
MK
84.RE
85.sp
df0c9b98 86The field are as follows:
f03743fd 87.TP 12
60017fa5
MK
88.I name
89This is the user's login name.
c13182ef 90It should not contain capital letters.
fea681da
MK
91.TP
92.I password
60017fa5
MK
93This is either the encrypted user password,
94an asterisk (*), or the letter \(aqx\(aq.
30f7100e
MK
95(See
96.BR pwconv (8)
f81fb444 97for an explanation of \(aqx\(aq.)
fea681da
MK
98.TP
99.I UID
60017fa5
MK
100The privileged
101.I root
102login account (superuser) has the user ID 0.
fea681da
MK
103.TP
104.I GID
60017fa5
MK
105This is the numeric primary group ID for this user.
106(Additional groups for the user are defined in the system group file; see
107.BR group (5)).
fea681da
MK
108.TP
109.I GECOS
60017fa5
MK
110This field (sometimes called the "comment field")
111is optional and used only for informational purposes.
18701562 112Usually, it contains the full username.
60017fa5
MK
113Some programs (for example,
114.BR finger (1))
115display information from this field.
116.IP
df0c9b98
MK
117GECOS stands for "General Electric Comprehensive Operating System",
118which was renamed to GCOS when
c13182ef
MK
119GE's large systems division was sold to Honeywell.
120Dennis Ritchie has reported: "Sometimes we sent printer output or
121batch jobs to the GCOS machine.
122The gcos field in the password file was a place to stash the
123information for the $IDENTcard.
124Not elegant."
fea681da
MK
125.TP
126.I directory
60017fa5
MK
127This is the user's home directory:
128the initial directory where the user is placed after logging in.
129The value in this field is used to set the
130.B HOME
131environment variable.
fea681da
MK
132.TP
133.I shell
60017fa5 134This is the program to run at login (if empty, use
8478ee02 135.IR /bin/sh ).
f74bac5d 136If set to a nonexistent executable, the user will be unable to login
fea681da
MK
137through
138.BR login (1).
60017fa5
MK
139The value in this field is used to set the
140.B SHELL
141environment variable.
2b2581ee
MK
142.SH FILES
143.I /etc/passwd
19c98696 144.SH NOTES
df0c9b98
MK
145If you want to create user groups, there must be an entry in
146.IR /etc/group ,
147or no group will exist.
fea681da 148.PP
156f55f6 149If the encrypted password is set to an asterisk (*), the user will be unable
fea681da
MK
150to login using
151.BR login (1),
152but may still login using
153.BR rlogin (1),
154run existing processes and initiate new ones through
155.BR rsh (1),
49ec013c 156.BR cron (8),
fea681da 157.BR at (1),
c13182ef
MK
158or mail filters, etc.
159Trying to lock an account by simply changing the
fea681da
MK
160shell field yields the same result and additionally allows the use of
161.BR su (1).
47297adb 162.SH SEE ALSO
fea681da
MK
163.BR login (1),
164.BR passwd (1),
165.BR su (1),
b22e49b8
MK
166.BR getpwent (3),
167.BR getpwnam (3),
60017fa5 168.BR crypt (3),
fea681da
MK
169.BR group (5),
170.BR shadow (5)