making up for cvs export not creating empy dirs
[linux_from_scratch.git] / BOOK / chapter06 / shadowpwd-inst.xml
blobe8a492b3072d327ad45a18b65f286450329674f8
1 <sect2>
2 <title>Installation of Shadow Password Suite</title>
4 <para>Before you install this package, you may want to have a look at the
5 <ulink url="http://hints.linuxfromscratch.org/hints/shadowpasswd_plus.txt">http://hints.linuxfromscratch.org/hints/shadowpasswd_plus.txt</ulink>
6 lfs hint. It discusses how you can make your system more secure regarding
7 passwords and how to get the most out of this Shadow package.</para>
9 <para>Install the Shadow Password Suite by running the 
10 following commands:</para>
12 <para><screen><userinput>./configure --prefix=/usr --enable-shared &amp;&amp;
13 make &amp;&amp;
14 make install &amp;&amp;
15 cd etc &amp;&amp;
16 cp limits login.access /etc &amp;&amp;
17 sed 's%/var/spool/mail%/var/mail%' login.defs.linux &gt; /etc/login.defs &amp;&amp;
18 cd /usr/sbin &amp;&amp;
19 ln -sf vipw vigr &amp;&amp;
20 rm /bin/vipw &amp;&amp;
21 mv /bin/sg /usr/bin &amp;&amp;
22 cd /lib &amp;&amp;
23 mv libmisc.*a libshadow.*a /usr/lib &amp;&amp;
24 cd /usr/lib &amp;&amp;
25 ln -s ../../lib/libshadow.so</userinput></screen></para>
27 </sect2>