source: chapter06/shadow.xml@ 222cddb

Last change on this file since 222cddb was 0a51467, checked in by Manuel Canales Esparcia <manuel@…>, 19 years ago

Ported form trink the appliccable changes in revisions r4896 to r4919.

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

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