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