Add the DragonFly cvs id and perform general cleanups on cvs/rcs/sccs ids. Most
[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. 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 .\"     @(#)adduser.8   8.1 (Berkeley) 6/5/93
33 .\" $FreeBSD: src/share/man/man8/adding_user.8,v 1.3.2.3 2001/08/17 13:08:50 ru Exp $
34 .\"
35 .Dd June 5, 1993
36 .Dt ADDING_USER 8
37 .Os
38 .Sh NAME
39 .Nm adding_user
40 .Nd procedure for adding new users
41 .Sh DESCRIPTION
42 A new user must choose a login name, which must not already appear in
43 .Pa /etc/passwd
44 or
45 .Pa /etc/mail/aliases .
46 It must also not begin with the hyphen
47 .Ql Fl
48 character.
49 It is strongly recommended that it be all lower-case, and not contain
50 the dot
51 .Ql .\&
52 character, as that tends to confuse mailers.
53 An account can be added by editing a line into the passwd file; this
54 must be done with the password file locked e.g. by using
55 .Xr chpass 1
56 or
57 .Xr vipw 8 .
58 .Pp
59 A new user is given a group and user id.
60 Login and user id's should be unique across the system, and often across
61 a group of systems, since they are used to control file access.
62 Typically, users working on similar projects will be put in the same groups.
63 At the University of California, Berkeley, we have groups for system staff,
64 faculty, graduate students, and special groups for large projects.
65 .Pp
66 A skeletal account for a new user
67 .Dq ernie
68 might look like:
69 .Bd -literal
70 ernie::25:30::0:0:Ernie Kovacs,508 Evans Hall,x7925,
71         642-8202:/a/users/ernie:/bin/csh
72 .Ed
73 .Pp
74 For a description of each of these fields, see
75 .Xr passwd 5 .
76 .Pp
77 It is useful to give new users some help in getting started, supplying
78 them with a few skeletal files such as
79 .Pa \&.profile
80 if they use
81 .Pa /bin/sh ,
82 or
83 .Pa \&.cshrc
84 and
85 .Pa \&.login
86 if they use
87 .Pa /bin/csh .
88 The directory
89 .Pa /usr/share/skel
90 contains skeletal definitions of such files.
91 New users should be given copies of these files which, for instance,
92 use
93 .Xr tset 1
94 automatically at each login.
95 .Sh FILES
96 .Bl -tag -width /etc/master.passwdxx -compact
97 .It Pa /etc/master.passwd
98 user database
99 .It Pa /usr/share/skel
100 skeletal login directory
101 .El
102 .Sh SEE ALSO
103 .Xr chpass 1 ,
104 .Xr finger 1 ,
105 .Xr passwd 1 ,
106 .Xr aliases 5 ,
107 .Xr passwd 5 ,
108 .Xr adduser 8 ,
109 .Xr pwd_mkdb 8 ,
110 .Xr vipw 8
111 .Sh BUGS
112 User information should (and eventually will) be stored elsewhere.
113 .Sh HISTORY
114 The
115 .Nm
116 procedure appeared in
117 .Bx 3.0 .