shadowpwd.xml 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. <sect1 id="ch06-shadow" xreflabel="Shadow">
  2. <title>Installing Shadow-&shadow-version;</title>
  3. <?dbhtml filename="shadow.html" dir="chapter06"?>
  4. <para>The Shadow package contains programs for handling passwords in a secure
  5. way.</para>
  6. <screen>Estimated build time: &shadow-time;
  7. Estimated required disk space: &shadow-compsize;</screen>
  8. &aa-shadowpwd-down;
  9. &aa-shadowpwd-dep;
  10. <sect2><title>&nbsp;</title><para>&nbsp;</para></sect2>
  11. <sect2>
  12. <title>Installation of Shadow</title>
  13. <para>Shadow hard-wires the path to the <userinput>passwd</userinput> binary
  14. within the binary itself, but does this the wrong way. If a
  15. <userinput>passwd</userinput> binary is not present before installing Shadow,
  16. the package incorrectly assumes it is going to be located at
  17. <filename>/bin/passwd</filename>, but then installs it in
  18. <filename>/usr/bin/passwd</filename>. This will lead to errors about not finding
  19. <filename>/bin/passwd</filename>. To work around this bug, create a dummy
  20. <filename>passwd</filename> file, so that it gets hard-wired properly:</para>
  21. <screen><userinput>touch /usr/bin/passwd</userinput></screen>
  22. <para>The current Shadow suite has a problem that causes the
  23. <userinput>newgrp</userinput> command to fail. The following patch (also
  24. appearing in Shadow's CVS code) fixes this problem:</para>
  25. <screen><userinput>patch -Np1 -i ../&shadow-patch;</userinput></screen>
  26. <para>Now prepare Shadow for compilation:</para>
  27. <screen><userinput>./configure --prefix=/usr --libdir=/usr/lib --enable-shared</userinput></screen>
  28. <para>Compile the package:</para>
  29. <screen><userinput>make</userinput></screen>
  30. <para>And install it:</para>
  31. <screen><userinput>make install</userinput></screen>
  32. <para>Shadow uses two files to configure authentication settings for the
  33. system. Install these two config files:</para>
  34. <screen><userinput>cp etc/{limits,login.access} /etc</userinput></screen>
  35. <para>We want to change the password method to enable MD5 passwords which are
  36. theoretically more secure than the default "crypt" method and also allow
  37. password lengths greater than 8 characters. We also need to change the old
  38. <filename class="directory">/var/spool/mail</filename> location for user
  39. mailboxes to the current location at
  40. <filename class="directory">/var/mail</filename>. We do this by changing the
  41. relevant configuration file while copying it to its destination:</para>
  42. <screen><userinput>sed -e 's%/var/spool/mail%/var/mail%' \
  43. &nbsp;&nbsp;&nbsp;&nbsp;-e 's%#MD5_CRYPT_ENAB.no%MD5_CRYPT_ENAB yes%' \
  44. &nbsp;&nbsp;&nbsp;&nbsp;etc/login.defs.linux &gt; /etc/login.defs</userinput></screen>
  45. <note><para>Be extra careful when typing all of the above. It is probably safer
  46. to cut-and-paste it rather than try and type it all in.</para></note>
  47. <para>According to the man page of <userinput>vipw</userinput>, a
  48. <userinput>vigr</userinput> program should exist too. Since the installation
  49. procedure doesn't create this program, create a symlink manually:</para>
  50. <screen><userinput>ln -s vipw /usr/sbin/vigr</userinput></screen>
  51. <para>As the <filename>/bin/vipw</filename> symlink is redundant (and even
  52. pointing to a non-existent file), remove it:</para>
  53. <screen><userinput>rm /bin/vipw</userinput></screen>
  54. <para>Now move the <userinput>sg</userinput> program to its proper place:</para>
  55. <screen><userinput>mv /bin/sg /usr/bin</userinput></screen>
  56. <para>And move Shadow's dynamic libraries to a more appropriate location:</para>
  57. <screen><userinput>mv /usr/lib/lib{shadow,misc}.so.0* /lib</userinput></screen>
  58. <para>As some packages expect to find the just-moved libraries in
  59. <filename>/usr/lib</filename>, create the following symlinks:</para>
  60. <screen><userinput>ln -sf ../../lib/libshadow.so.0 /usr/lib/libshadow.so
  61. ln -sf ../../lib/libmisc.so.0 /usr/lib/libmisc.so</userinput></screen>
  62. <para>The -D option of the <filename>useradd</filename> program requires this
  63. directory for it to work properly:</para>
  64. <screen><userinput>mkdir /etc/default</userinput></screen>
  65. <para>Coreutils has already installed a <userinput>groups</userinput> program
  66. in <filename>/usr/bin</filename>. If you wish, you can remove the one
  67. installed by Shadow:</para>
  68. <screen><userinput>rm /bin/groups</userinput></screen>
  69. </sect2>
  70. &c6-cf-shadowpwd;
  71. &c6-cf-password;
  72. &aa-shadowpwd-shortdesc;
  73. &aa-shadowpwd-desc;
  74. </sect1>