source: chapter06/shadowpwd.xml@ c288d97

10.0 10.0-rc1 10.1 10.1-rc1 11.0 11.0-rc1 11.0-rc2 11.0-rc3 11.1 11.1-rc1 11.2 11.2-rc1 11.3 11.3-rc1 12.0 12.0-rc1 12.1 12.1-rc1 6.0 6.1 6.1.1 6.3 6.4 6.5 6.6 6.7 6.8 7.0 7.1 7.2 7.3 7.4 7.5 7.5-systemd 7.6 7.6-systemd 7.7 7.7-systemd 7.8 7.8-systemd 7.9 7.9-systemd 8.0 8.1 8.2 8.3 8.4 9.0 9.1 arm bdubbs/gcc13 ml-11.0 multilib renodr/libudev-from-systemd s6-init trunk v5_1 v5_1_1 xry111/arm64 xry111/arm64-12.0 xry111/clfs-ng xry111/lfs-next xry111/loongarch xry111/loongarch-12.0 xry111/loongarch-12.1 xry111/mips64el xry111/pip3 xry111/rust-wip-20221008 xry111/update-glibc
Last change on this file since c288d97 was 3be4d97, checked in by Alex Gronenwoud <alex@…>, 20 years ago

Changing identifiers in preparation for moving sections.

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

  • Property mode set to 100644
File size: 3.6 KB
Line 
1<sect1 id="ch-system-shadow" xreflabel="Shadow">
2<title>Installing Shadow-&shadow-version;</title>
3<?dbhtml filename="shadow.html" dir="chapter06"?>
4
5<para>The Shadow package contains programs for handling passwords in a secure
6way.</para>
7
8<screen>&buildtime; &shadow-time;
9&diskspace; &shadow-compsize;</screen>
10
11&aa-shadowpwd-down;
12&aa-shadowpwd-dep;
13
14<sect2><title>&nbsp;</title><para>&nbsp;</para></sect2>
15
16<sect2>
17<title>Installation of Shadow</title>
18
19<para>Shadow hard-wires the path to the <userinput>passwd</userinput> binary
20within the binary itself, but does this the wrong way. If a
21<userinput>passwd</userinput> binary is not present before installing Shadow,
22the package incorrectly assumes it is going to be located at
23<filename>/bin/passwd</filename>, but then installs it in
24<filename>/usr/bin/passwd</filename>. This will lead to errors about not finding
25<filename>/bin/passwd</filename>. To work around this bug, create a dummy
26<filename>passwd</filename> file, so that it gets hard-wired properly:</para>
27
28<screen><userinput>touch /usr/bin/passwd</userinput></screen>
29
30<para>Now prepare Shadow for compilation:</para>
31
32<screen><userinput>./configure --libdir=/usr/lib --enable-shared</userinput></screen>
33
34<para>Work around a problem that prevents Shadow's internationalization from
35working:</para>
36
37<screen><userinput>echo '#define HAVE_SETLOCALE 1' >> config.h</userinput></screen>
38
39<para>Compile the package:</para>
40
41<screen><userinput>make</userinput></screen>
42
43<para>And install it:</para>
44
45<screen><userinput>make install</userinput></screen>
46
47<para>Shadow uses two files to configure authentication settings for the
48system. Install these two config files:</para>
49
50<screen><userinput>cp etc/{limits,login.access} /etc</userinput></screen>
51
52<para>We want to change the password method to enable MD5 passwords which are
53theoretically more secure than the default "crypt" method and also allow
54password lengths greater than 8 characters. We also need to change the old
55<filename class="directory">/var/spool/mail</filename> location for user
56mailboxes to the current location at
57<filename class="directory">/var/mail</filename>. We do this by changing the
58relevant configuration file while copying it to its destination:</para>
59
60<screen><userinput>sed -e 's%/var/spool/mail%/var/mail%' \
61&nbsp;&nbsp;&nbsp;&nbsp;-e 's%#MD5_CRYPT_ENAB.no%MD5_CRYPT_ENAB yes%' \
62&nbsp;&nbsp;&nbsp;&nbsp;etc/login.defs.linux &gt; /etc/login.defs</userinput></screen>
63
64<note><para>Be extra careful when typing all of the above. It is probably safer
65to cut-and-paste it rather than try and type it all in.</para></note>
66
67<para>Move some misplaced symlinks to their proper locations:</para>
68
69<screen><userinput>mv /bin/sg /usr/bin
70mv /bin/vigr /usr/sbin</userinput></screen>
71
72<para>And move Shadow's dynamic libraries to a more appropriate location:</para>
73
74<screen><userinput>mv /usr/lib/lib{shadow,misc}.so.0* /lib</userinput></screen>
75
76<para>As some packages expect to find the just-moved libraries in
77<filename>/usr/lib</filename>, create the following symlinks:</para>
78
79<screen><userinput>ln -sf ../../lib/libshadow.so.0 /usr/lib/libshadow.so
80ln -sf ../../lib/libmisc.so.0 /usr/lib/libmisc.so</userinput></screen>
81
82<para>The -D option of the <filename>useradd</filename> program requires this
83directory for it to work properly:</para>
84
85<screen><userinput>mkdir /etc/default</userinput></screen>
86
87<para>Coreutils has already installed a better <userinput>groups</userinput>
88program in <filename>/usr/bin</filename>. Remove the one installed by
89Shadow:</para>
90
91<screen><userinput>rm /bin/groups</userinput></screen>
92
93</sect2>
94
95&c6-cf-shadowpwd;
96&c6-cf-password;
97
98&aa-shadowpwd-shortdesc;
99&aa-shadowpwd-desc;
100
101</sect1>
102
Note: See TracBrowser for help on using the repository browser.