source: chapter06/shadow.xml@ 38bb44a

6.0
Last change on this file since 38bb44a was 38bb44a, checked in by Gerard Beekmans <gerard@…>, 20 years ago

first round of printed layout fixes

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/testing/BOOK@4155 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

  • Property mode set to 100644
File size: 14.7 KB
RevLine 
[673b0d8]1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN" "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
3 <!ENTITY % general-entities SYSTEM "../general.ent">
4 %general-entities;
5]>
[752f4e5]6<sect1 id="ch-system-shadow" role="wrap">
[673b0d8]7<title>Shadow-&shadow-version;</title>
8<?dbhtml filename="shadow.html"?>
9
10<indexterm zone="ch-system-shadow"><primary sortas="a-Shadow">Shadow</primary></indexterm>
[6370fa6]11
[a001133]12<sect2 role="package"><title/>
[5888299]13<para>The Shadow package contains programs for handling passwords in a secure
14way.</para>
15
[a001133]16<segmentedlist>
17<segtitle>&buildtime;</segtitle>
18<segtitle>&diskspace;</segtitle>
19<seglistitem><seg>0.4 SBU</seg><seg>11 MB</seg></seglistitem>
20</segmentedlist>
[673b0d8]21
[a001133]22<segmentedlist>
23<segtitle>Shadow installation depends on</segtitle>
24<seglistitem><seg>Bash, Binutils, Bison, Coreutils,
[69993f4]25Diffutils, GCC, Gettext, Glibc, Grep, Make, and Sed</seg></seglistitem>
[a001133]26</segmentedlist>
27</sect2>
[3554fa3a]28
[a001133]29<sect2 role="installation">
[73aedd1d]30<title>Installation of Shadow</title>
31
[6820da0]32<para>Prepare Shadow for compilation:</para>
[73aedd1d]33
[d0a6c4c]34<screen><userinput>./configure --libdir=/usr/lib --enable-shared</userinput></screen>
[73aedd1d]35
[ef13657]36<para>Work around a problem that prevents Shadow's
37internationalization from working:</para>
[73aedd1d]38
[cd0c92d6]39<screen><userinput>echo '#define HAVE_SETLOCALE 1' &gt;&gt; config.h</userinput></screen>
[73aedd1d]40
[ef13657]41<para>Shadow incorrectly declares the malloc() function, causing
42compilation failure. Fix this:</para>
[9dfc02f]43
44<screen><userinput>sed -i '/extern char/d' libmisc/xmalloc.c</userinput></screen>
45
[73aedd1d]46<para>Compile the package:</para>
47
48<screen><userinput>make</userinput></screen>
49
[ef13657]50<para>Install the package:</para>
[73aedd1d]51
52<screen><userinput>make install</userinput></screen>
53
54<para>Shadow uses two files to configure authentication settings for the
55system. Install these two config files:</para>
56
57<screen><userinput>cp etc/{limits,login.access} /etc</userinput></screen>
58
[38bb44a]59<beginpage/>
[ef13657]60<para>Instead of using the default <emphasis>crypt</emphasis> method,
61use the more secure <emphasis>MD5</emphasis> method of password
62encryption, which also allows passwords longer than 8 characters. It
63is also necessary to change the obsolete <filename
64class="directory">/var/spool/mail</filename> location for user
65mailboxes that Shadow uses by default to the <filename
66class="directory">/var/mail</filename> location used currently. Both
67of these can be accomplished by changing the relevant configuration
68file while copying it to its destination:</para>
[c21999c6]69
[2ec4b60]70<screen><userinput>cp etc/login.defs.linux /etc/login.defs
71sed -i -e 's@#MD5_CRYPT_ENAB.no@MD5_CRYPT_ENAB yes@' \
[8dffa04]72 -e 's@/var/spool/mail@/var/mail@' /etc/login.defs</userinput></screen>
[73aedd1d]73
[ef13657]74<para>Move some misplaced symlinks/programs to their proper
75locations:</para>
[73aedd1d]76
[d0a6c4c]77<screen><userinput>mv /bin/sg /usr/bin
[6820da0]78mv /bin/vigr /usr/sbin
79mv /usr/bin/passwd /bin</userinput></screen>
[73aedd1d]80
[ef13657]81<para>Move Shadow's dynamic libraries to a more appropriate
82location:</para>
[73aedd1d]83
84<screen><userinput>mv /usr/lib/lib{shadow,misc}.so.0* /lib</userinput></screen>
85
[ef13657]86<para>Because some packages expect to find the just-moved libraries in
87<filename class="directory">/usr/lib</filename>, create the following
88symlinks:</para>
[73aedd1d]89
90<screen><userinput>ln -sf ../../lib/libshadow.so.0 /usr/lib/libshadow.so
91ln -sf ../../lib/libmisc.so.0 /usr/lib/libmisc.so</userinput></screen>
92
[ef13657]93<para>The <parameter>-D</parameter> option of the
94<command>useradd</command> program requires the <filename
95class="directory">/etc/default</filename> directory for it to work
96properly:</para>
[638a816e]97
98<screen><userinput>mkdir /etc/default</userinput></screen>
99
[ef13657]100<para>Coreutils has already installed a better
101<command>groups</command> program in <filename
102class="directory">/usr/bin</filename>. Remove the one installed by
103Shadow:</para>
[73aedd1d]104
105<screen><userinput>rm /bin/groups</userinput></screen>
106
107</sect2>
[24351aa]108
[2309b72]109
[df8334f]110<sect2 id="conf-shadow" role="configuration"><title>Configuring Shadow</title>
[673b0d8]111<indexterm zone="conf-shadow">
112<primary sortas="a-Shadow">Shadow</primary>
113<secondary>configuring</secondary></indexterm>
[2309b72]114
[ef13657]115<para>This package contains utilities to add, modify, and delete users
116and groups; set and change their passwords; and perform other
117administrative tasks. For a full explanation of what
118<emphasis>password shadowing</emphasis> means, see the
119<filename>doc/HOWTO</filename> file within the unpacked source tree.
120If using Shadow support, keep in mind that programs which need to
[69993f4]121verify passwords (display managers, FTP programs, pop3 daemons, etc.)
122must be shadow-compliant. That is, they need to be able to work with
[ef13657]123shadowed passwords.</para>
[2309b72]124
125<para>To enable shadowed passwords, run the following command:</para>
126
[cd1ddd7]127<screen><userinput>pwconv</userinput></screen>
[2309b72]128
[673b0d8]129<para>To enable shadowed group passwords, run:</para>
[2309b72]130
[cd1ddd7]131<screen><userinput>grpconv</userinput></screen>
[2309b72]132
[ef13657]133<para>Under normal circumstances, passwords will not have been created
134yet. However, if returning to this section later to enable shadowing,
135reset any current user passwords with the <command>passwd</command>
136command or any group passwords with the <command>gpasswd</command>
137command.</para>
[c21999c6]138
[2309b72]139</sect2>
140
[c21999c6]141
[df8334f]142<sect2 role="configuration">
[2309b72]143<title>Setting the root password</title>
144
[ef13657]145<para>Choose a password for user <emphasis>root</emphasis> and set it
146by running:</para>
[2309b72]147
148<screen><userinput>passwd root</userinput></screen>
149
150</sect2>
[24351aa]151
[5888299]152
[c6cb3aa]153<sect2 id="contents-shadow" role="content"><title>Contents of Shadow</title>
[673b0d8]154
[c6cb3aa]155<segmentedlist>
156<segtitle>Installed programs</segtitle>
[69993f4]157<segtitle>Installed libraries</segtitle>
[35ee31b]158<seglistitem><seg>chage, chfn, chpasswd, chsh, expiry, faillog, gpasswd,
159groupadd, groupdel, groupmod, groups, grpck, grpconv, grpunconv, lastlog, login,
160logoutd, mkpasswd, newgrp, newusers, passwd, pwck, pwconv, pwunconv, sg
[69993f4]161(link to newgrp), useradd, userdel, usermod, vigr (link to vipw), and vipw</seg>
162<seg>libshadow[.a,so]</seg>
[35ee31b]163</seglistitem>
[c6cb3aa]164</segmentedlist>
[673b0d8]165
[3ed279f]166<variablelist><bridgehead renderas="sect3">Short descriptions</bridgehead>
167<?dbfo list-presentation="list"?>
[673b0d8]168
[b8a819f]169<varlistentry id="chage">
170<term><command>chage</command></term>
[c6cb3aa]171<listitem>
[ef13657]172<para> used to change the maximum number of days between obligatory
173password changes.</para>
[3ed279f]174<indexterm zone="ch-system-shadow chage"><primary sortas="b-chage">chage</primary></indexterm>
[c6cb3aa]175</listitem>
176</varlistentry>
[673b0d8]177
[b8a819f]178<varlistentry id="chfn">
179<term><command>chfn</command></term>
[c6cb3aa]180<listitem>
[ef13657]181<para>used to change a user's full name and other info.</para>
[3ed279f]182<indexterm zone="ch-system-shadow chfn"><primary sortas="b-chfn">chfn</primary></indexterm>
[c6cb3aa]183</listitem>
184</varlistentry>
[673b0d8]185
[b8a819f]186<varlistentry id="chpasswd">
187<term><command>chpasswd</command></term>
[c6cb3aa]188<listitem>
[ef13657]189<para>used to update the passwords of an entire series of user
190accounts.</para>
[3ed279f]191<indexterm zone="ch-system-shadow chpasswd"><primary sortas="b-chpasswd">chpasswd</primary></indexterm>
[c6cb3aa]192</listitem>
193</varlistentry>
[673b0d8]194
[b8a819f]195<varlistentry id="chsh">
196<term><command>chsh</command></term>
[c6cb3aa]197<listitem>
[ef13657]198<para>used to change a user's default login shell.</para>
[3ed279f]199<indexterm zone="ch-system-shadow chsh"><primary sortas="b-chsh">chsh</primary></indexterm>
[c6cb3aa]200</listitem>
201</varlistentry>
[673b0d8]202
[b8a819f]203<varlistentry id="expiry">
204<term><command>expiry</command></term>
[c6cb3aa]205<listitem>
206<para>checks and enforces the current password expiration policy.</para>
[3ed279f]207<indexterm zone="ch-system-shadow expiry"><primary sortas="b-expiry">expiry</primary></indexterm>
[c6cb3aa]208</listitem>
209</varlistentry>
[673b0d8]210
[b8a819f]211<varlistentry id="faillog">
212<term><command>faillog</command></term>
[c6cb3aa]213<listitem>
[3ed279f]214<para>is used to examine the log of login failures, to set a maximum number of
[c6cb3aa]215failures before an account is blocked, or to reset the failure count.</para>
[3ed279f]216<indexterm zone="ch-system-shadow faillog"><primary sortas="b-faillog">faillog</primary></indexterm>
[c6cb3aa]217</listitem>
218</varlistentry>
219
[b8a819f]220<varlistentry id="gpasswd">
221<term><command>gpasswd</command></term>
[c6cb3aa]222<listitem>
223<para>is used to add and delete members and administrators to groups.</para>
[3ed279f]224<indexterm zone="ch-system-shadow gpasswd"><primary sortas="b-gpasswd">gpasswd</primary></indexterm>
[c6cb3aa]225</listitem>
226</varlistentry>
[673b0d8]227
[b8a819f]228<varlistentry id="groupadd">
229<term><command>groupadd</command></term>
[c6cb3aa]230<listitem>
231<para>creates a group with the given name.</para>
[3ed279f]232<indexterm zone="ch-system-shadow groupadd"><primary sortas="b-groupadd">groupadd</primary></indexterm>
[c6cb3aa]233</listitem>
234</varlistentry>
[673b0d8]235
[b8a819f]236<varlistentry id="groupdel">
237<term><command>groupdel</command></term>
[c6cb3aa]238<listitem>
239<para>deletes the group with the given name.</para>
[3ed279f]240<indexterm zone="ch-system-shadow groupdel"><primary sortas="b-groupdel">groupdel</primary></indexterm>
[c6cb3aa]241</listitem>
242</varlistentry>
[673b0d8]243
[b8a819f]244<varlistentry id="groupmod">
245<term><command>groupmod</command></term>
[c6cb3aa]246<listitem>
247<para>is used to modify the given group's name or GID.</para>
[3ed279f]248<indexterm zone="ch-system-shadow groupmod"><primary sortas="b-groupmod">groupmod</primary></indexterm>
[c6cb3aa]249</listitem>
250</varlistentry>
[673b0d8]251
[b8a819f]252<varlistentry id="groups">
253<term><command>groups</command></term>
[c6cb3aa]254<listitem>
255<para>reports the groups of which the given users are members.</para>
[3ed279f]256<indexterm zone="ch-system-shadow groups"><primary sortas="b-groups">groups</primary></indexterm>
[c6cb3aa]257</listitem>
258</varlistentry>
[673b0d8]259
[b8a819f]260<varlistentry id="grpck">
261<term><command>grpck</command></term>
[c6cb3aa]262<listitem>
[69993f4]263<para>verifies the integrity of the group files <filename>/etc/group</filename>
[3ed279f]264<indexterm zone="ch-system-shadow grpck"><primary sortas="b-grpck">grpck</primary></indexterm>
[c6cb3aa]265and <filename>/etc/gshadow</filename>.</para>
266</listitem>
267</varlistentry>
268
[b8a819f]269<varlistentry id="grpconv">
270<term><command>grpconv</command></term>
[c6cb3aa]271<listitem>
272<para>creates or updates the shadow group file from the normal group file.</para>
[3ed279f]273<indexterm zone="ch-system-shadow grpconv"><primary sortas="b-grpconv">grpconv</primary></indexterm>
[c6cb3aa]274</listitem>
275</varlistentry>
[673b0d8]276
[b8a819f]277<varlistentry id="grpunconv">
278<term><command>grpunconv</command></term>
[c6cb3aa]279<listitem>
280<para>updates <filename>/etc/group</filename>
[673b0d8]281from <filename>/etc/gshadow</filename> and then deletes the latter.</para>
[3ed279f]282<indexterm zone="ch-system-shadow grpunconv"><primary sortas="b-grpunconv">grpunconv</primary></indexterm>
[c6cb3aa]283</listitem>
284</varlistentry>
[673b0d8]285
[b8a819f]286<varlistentry id="lastlog">
287<term><command>lastlog</command></term>
[c6cb3aa]288<listitem>
[69993f4]289<para>reports the most recent login of all users or of a given user.</para>
[3ed279f]290<indexterm zone="ch-system-shadow lastlog"><primary sortas="b-lastlog">lastlog</primary></indexterm>
[c6cb3aa]291</listitem>
292</varlistentry>
[73aedd1d]293
[b8a819f]294<varlistentry id="login">
295<term><command>login</command></term>
[c6cb3aa]296<listitem>
297<para>is used by the system to let users sign on.</para>
[3ed279f]298<indexterm zone="ch-system-shadow login"><primary sortas="b-login">login</primary></indexterm>
[c6cb3aa]299</listitem>
300</varlistentry>
[673b0d8]301
[b8a819f]302<varlistentry id="logoutd">
303<term><command>logoutd</command></term>
[c6cb3aa]304<listitem>
305<para>is a daemon used to enforce restrictions on log-on time and ports.</para>
[3ed279f]306<indexterm zone="ch-system-shadow logoutd"><primary sortas="b-logoutd">logoutd</primary></indexterm>
[c6cb3aa]307</listitem>
308</varlistentry>
[673b0d8]309
[b8a819f]310<varlistentry id="mkpasswd">
311<term><command>mkpasswd</command></term>
[c6cb3aa]312<listitem>
[ef13657]313<para>generates random passwords.</para>
[3ed279f]314<indexterm zone="ch-system-shadow mkpasswd"><primary sortas="b-mkpasswd">mkpasswd</primary></indexterm>
[c6cb3aa]315</listitem>
316</varlistentry>
[673b0d8]317
[b8a819f]318<varlistentry id="newgrp">
319<term><command>newgrp</command></term>
[c6cb3aa]320<listitem>
321<para>is used to change the current GID during a login session.</para>
[3ed279f]322<indexterm zone="ch-system-shadow newgrp"><primary sortas="b-newgrp">newgrp</primary></indexterm>
[c6cb3aa]323</listitem>
324</varlistentry>
[673b0d8]325
[b8a819f]326<varlistentry id="newusers">
327<term><command>newusers</command></term>
[c6cb3aa]328<listitem>
[ef13657]329<para>is used to create or update an entire series of user accounts.</para>
[3ed279f]330<indexterm zone="ch-system-shadow newusers"><primary sortas="b-newusers">newusers</primary></indexterm>
[c6cb3aa]331</listitem>
332</varlistentry>
[673b0d8]333
[b8a819f]334<varlistentry id="passwd">
335<term><command>passwd</command></term>
[c6cb3aa]336<listitem>
337<para>is used to change the password for a user or group account.</para>
[3ed279f]338<indexterm zone="ch-system-shadow passwd"><primary sortas="b-passwd">passwd</primary></indexterm>
[c6cb3aa]339</listitem>
340</varlistentry>
[673b0d8]341
[b8a819f]342<varlistentry id="pwck">
343<term><command>pwck</command></term>
[c6cb3aa]344<listitem>
[69993f4]345<para>verifies the integrity of the password files
[673b0d8]346<filename>/etc/passwd</filename> and <filename>/etc/shadow</filename>.</para>
[3ed279f]347<indexterm zone="ch-system-shadow pwck"><primary sortas="b-pwck">pwck</primary></indexterm>
[c6cb3aa]348</listitem>
349</varlistentry>
[673b0d8]350
[b8a819f]351<varlistentry id="pwconv">
352<term><command>pwconv</command></term>
[c6cb3aa]353<listitem>
[ef13657]354<para>creates or updates the shadow password file from the normal
355password file.</para>
[3ed279f]356<indexterm zone="ch-system-shadow pwconv"><primary sortas="b-pwconv">pwconv</primary></indexterm>
[c6cb3aa]357</listitem>
358</varlistentry>
[673b0d8]359
[b8a819f]360<varlistentry id="pwunconv">
361<term><command>pwunconv</command></term>
[c6cb3aa]362<listitem>
363<para>updates <filename>/etc/passwd</filename>
[673b0d8]364from <filename>/etc/shadow</filename> and then deletes the latter.</para>
[3ed279f]365<indexterm zone="ch-system-shadow pwunconv"><primary sortas="b-pwunconv">pwunconv</primary></indexterm>
[c6cb3aa]366</listitem>
367</varlistentry>
[673b0d8]368
[b8a819f]369<varlistentry id="sg">
370<term><command>sg</command></term>
[c6cb3aa]371<listitem>
372<para>executes a given command while the user's GID
[673b0d8]373is set to that of the given group.</para>
[3ed279f]374<indexterm zone="ch-system-shadow sg"><primary sortas="b-sg">sg</primary></indexterm>
[c6cb3aa]375</listitem>
376</varlistentry>
[673b0d8]377
[b8a819f]378<varlistentry id="useradd">
379<term><command>useradd</command></term>
[c6cb3aa]380<listitem>
[ef13657]381<para>creates a new user with the given name, or updates the default
382new-user information.</para>
[3ed279f]383<indexterm zone="ch-system-shadow useradd"><primary sortas="b-useradd">useradd</primary></indexterm>
[c6cb3aa]384</listitem>
385</varlistentry>
[673b0d8]386
[b8a819f]387<varlistentry id="userdel">
388<term><command>userdel</command></term>
[c6cb3aa]389<listitem>
390<para>deletes the given user account.</para>
[3ed279f]391<indexterm zone="ch-system-shadow userdel"><primary sortas="b-userdel">userdel</primary></indexterm>
[c6cb3aa]392</listitem>
393</varlistentry>
[673b0d8]394
[b8a819f]395<varlistentry id="usermod">
396<term><command>usermod</command></term>
[c6cb3aa]397<listitem>
[69993f4]398<para>is used to modify the given user's login name, User
399Identification (UID),
[ef13657]400shell, initial group, home directory, etc.</para>
[3ed279f]401<indexterm zone="ch-system-shadow usermod"><primary sortas="b-usermod">usermod</primary></indexterm>
[c6cb3aa]402</listitem>
403</varlistentry>
404
[b8a819f]405<varlistentry id="vigr">
406<term><command>vigr</command></term>
[c6cb3aa]407<listitem>
[69993f4]408<para>edits the <filename>/etc/group</filename> or
[c6cb3aa]409<filename>/etc/gshadow</filename> files.</para>
[3ed279f]410<indexterm zone="ch-system-shadow vigr"><primary sortas="b-vigr">vigr</primary></indexterm>
[c6cb3aa]411</listitem>
412</varlistentry>
413
[b8a819f]414<varlistentry id="vipw">
415<term><command>vipw</command></term>
[c6cb3aa]416<listitem>
[69993f4]417<para>edits the <filename>/etc/passwd</filename> or
[c6cb3aa]418<filename>/etc/shadow</filename> files.</para>
[3ed279f]419<indexterm zone="ch-system-shadow vipw"><primary sortas="b-vipw">vipw</primary></indexterm>
[c6cb3aa]420</listitem>
421</varlistentry>
422
[b8a819f]423<varlistentry id="libshadow">
[8ad7980]424<term><filename class="libraryfile">libshadow</filename></term>
[c6cb3aa]425<listitem>
426<para>contains functions used by most programs in this package.</para>
[3ed279f]427<indexterm zone="ch-system-shadow libshadow"><primary sortas="c-libshadow">libshadow</primary></indexterm>
[c6cb3aa]428</listitem>
429</varlistentry>
430</variablelist>
[673b0d8]431
432</sect2>
433
434</sect1>
[ef13657]435
Note: See TracBrowser for help on using the repository browser.