Correct BSD License clause numbering from 1-2-4 to 1-2-3.
[dragonfly.git] / share / man / man8 / adding_user.8
1 .\" Copyright (c) 1980, 1991, 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. Neither the name of the University nor the names of its contributors
13 .\"    may be used to endorse or promote products derived from this software
14 .\"    without specific prior written permission.
15 .\"
16 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
17 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
20 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 .\" SUCH DAMAGE.
27 .\"
28 .\"     @(#)adduser.8   8.1 (Berkeley) 6/5/93
29 .\" $FreeBSD: src/share/man/man8/adding_user.8,v 1.3.2.3 2001/08/17 13:08:50 ru Exp $
30 .\" $DragonFly: src/share/man/man8/adding_user.8,v 1.4 2006/02/17 19:37:10 swildner Exp $
31 .\"
32 .Dd June 5, 1993
33 .Dt ADDING_USER 8
34 .Os
35 .Sh NAME
36 .Nm adding_user
37 .Nd procedure for adding new users
38 .Sh DESCRIPTION
39 A new user must choose a login name, which must not already appear in
40 .Pa /etc/passwd
41 or
42 .Pa /etc/mail/aliases .
43 It must also not begin with the hyphen
44 .Ql \-
45 character.
46 It is strongly recommended that it be all lower-case, and not contain
47 the dot
48 .Ql .\&
49 character, as that tends to confuse mailers.
50 An account can be added by editing a line into the passwd file; this
51 must be done with the password file locked e.g. by using
52 .Xr chpass 1
53 or
54 .Xr vipw 8 .
55 .Pp
56 A new user is given a group and user id.
57 Login and user id's should be unique across the system, and often across
58 a group of systems, since they are used to control file access.
59 Typically, users working on similar projects will be put in the same groups.
60 At the University of California, Berkeley, we have groups for system staff,
61 faculty, graduate students, and special groups for large projects.
62 .Pp
63 A skeletal account for a new user
64 .Dq ernie
65 might look like:
66 .Bd -literal
67 ernie::25:30::0:0:Ernie Kovacs,508 Evans Hall,x7925,
68         642-8202:/a/users/ernie:/bin/csh
69 .Ed
70 .Pp
71 For a description of each of these fields, see
72 .Xr passwd 5 .
73 .Pp
74 It is useful to give new users some help in getting started, supplying
75 them with a few skeletal files such as
76 .Pa \&.profile
77 if they use
78 .Pa /bin/sh ,
79 or
80 .Pa \&.cshrc
81 and
82 .Pa \&.login
83 if they use
84 .Pa /bin/csh .
85 The directory
86 .Pa /usr/share/skel
87 contains skeletal definitions of such files.
88 New users should be given copies of these files which, for instance,
89 use
90 .Xr tset 1
91 automatically at each login.
92 .Sh FILES
93 .Bl -tag -width /etc/master.passwdxx -compact
94 .It Pa /etc/master.passwd
95 user database
96 .It Pa /usr/share/skel
97 skeletal login directory
98 .El
99 .Sh SEE ALSO
100 .Xr chpass 1 ,
101 .Xr finger 1 ,
102 .Xr passwd 1 ,
103 .Xr aliases 5 ,
104 .Xr passwd 5 ,
105 .Xr adduser 8 ,
106 .Xr pwd_mkdb 8 ,
107 .Xr vipw 8
108 .Sh HISTORY
109 The
110 .Nm
111 procedure appeared in
112 .Bx 3.0 .
113 .Sh BUGS
114 User information should (and eventually will) be stored elsewhere.