| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 | <sect1 id="ch-system-shadow" xreflabel="Shadow"><title>Installing Shadow-&shadow-version;</title><?dbhtml filename="shadow.html" dir="chapter06"?><para>The Shadow package contains programs for handling passwords in a secureway.</para><screen>&buildtime; &shadow-time;&diskspace; &shadow-compsize;</screen>&aa-shadow-down;&aa-shadow-dep;<sect2><title> </title><para> </para></sect2><sect2><title>Installation of Shadow</title><para>Shadow hard-wires the path to the <command>passwd</command> binary withinthe binary itself, but does this the wrong way. If a <command>passwd</command>binary is not present before installing Shadow, the package incorrectly assumesit is going to be located at <filename>/bin/passwd</filename>, but theninstalls it as <filename>/usr/bin/passwd</filename>. This will lead to errorsabout not finding <filename>/bin/passwd</filename>. To work around this bug,create a dummy <filename>passwd</filename> file, so that it gets hard-wiredproperly:</para><screen><userinput>touch /usr/bin/passwd</userinput></screen><para>Now prepare Shadow for compilation:</para><screen><userinput>./configure --libdir=/usr/lib --enable-shared</userinput></screen><para>Work around a problem that prevents Shadow's internationalization fromworking:</para><screen><userinput>echo '#define HAVE_SETLOCALE 1' >> config.h</userinput></screen><para>Compile the package:</para><screen><userinput>make</userinput></screen><para>And install it:</para><screen><userinput>make install</userinput></screen><para>Shadow uses two files to configure authentication settings for thesystem. Install these two config files:</para><screen><userinput>cp etc/{limits,login.access} /etc</userinput></screen><para>Instead of using the default <emphasis>crypt</emphasis> method, we wantto use the more secure <emphasis>MD5</emphasis> method of password encryption,which in addition allows passwords longer than 8 characters. We also need tochange the obsolete <filename class="directory">/var/spool/mail</filename>location for user mailboxes that Shadow uses by default to the <filenameclass="directory">/var/mail</filename> location used nowadays. We accomplishboth these things by changing the relevant configuration file while copying itto its destination (it's probably better to cut-and-paste this rather than tryand type it all in):</para><screen><userinput>sed -e 's%#MD5_CRYPT_ENAB.no%MD5_CRYPT_ENAB yes%' \    -e 's%/var/spool/mail%/var/mail%' \    etc/login.defs.linux > /etc/login.defs</userinput></screen><para>Move some misplaced symlinks to their proper locations:</para><screen><userinput>mv /bin/sg /usr/binmv /bin/vigr /usr/sbin</userinput></screen><para>And move Shadow's dynamic libraries to a more appropriate location:</para><screen><userinput>mv /usr/lib/lib{shadow,misc}.so.0* /lib</userinput></screen><para>As some packages expect to find the just-moved libraries in<filename>/usr/lib</filename>, create the following symlinks:</para><screen><userinput>ln -sf ../../lib/libshadow.so.0 /usr/lib/libshadow.soln -sf ../../lib/libmisc.so.0 /usr/lib/libmisc.so</userinput></screen><para>The -D option of the <filename>useradd</filename> program requires thisdirectory for it to work properly:</para><screen><userinput>mkdir /etc/default</userinput></screen><para>Coreutils has already installed a better <command>groups</command>program in <filename class="directory">/usr/bin</filename>. Remove the oneinstalled by Shadow:</para><screen><userinput>rm /bin/groups</userinput></screen></sect2><sect2><title> </title><para> </para></sect2><sect2><title>Configuring Shadow</title><para>This package contains utilities to add, modify and delete users andgroups, set and change their passwords, and other such administrative tasks.For a full explanation of what <emphasis>password shadowing</emphasis> means,see the <filename>doc/HOWTO</filename> file within the unpacked source tree.There's one thing to keep in mind if you decide to use Shadow support: programsthat need to verify passwords (display managers, ftp programs, pop3 daemons,and the like) need to be <emphasis>shadow-compliant</emphasis>, that is theyneed to be able to work with shadowed passwords.</para><para>To enable shadowed passwords, run the following command:</para><screen><userinput>pwconv</userinput></screen><para>And to enable shadowed group passwords, run:</para><screen><userinput>grpconv</userinput></screen><para>Under normal circumstances, you won't have created any passwords yet.However, if returning to this section later to enable shadowing, you shouldreset any current user passwords with the <command>passwd</command> command orany group passwords with the <command>gpasswd</command> command.</para></sect2><sect2><title> </title><para> </para></sect2><sect2><title>Setting the root password</title><para>Choose a password for user root and set it via:</para><screen><userinput>passwd root</userinput></screen></sect2>&aa-shadow-shortdesc;&aa-shadow-desc;</sect1>
 |