aboutsummaryrefslogtreecommitdiffstats
path: root/chapter06/shadowpwd-inst.xml
blob: b052cc6461b30d39704d10b819a64fe39f9cdaf7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<sect2>
<title>Installation of Shadow Password Suite</title>

<para>Before you install this package, you may want to have a look at the
<ulink url="http://hints.linuxfromscratch.org/hints/shadowpasswd_plus.txt">http://hints.linuxfromscratch.org/hints/shadowpasswd_plus.txt</ulink>
lfs hint. It discusses how you can make your system more secure regarding
passwords and how to get the most out of this Shadow package.</para>

<para>Install the Shadow Password Suite by running the 
following commands:</para>

<para><screen><userinput>cp src/useradd.c src/useradd.c.backup &amp;&amp;</userinput>
<userinput>sed 's/\(.*\) (nflg || \(.*\))\(.*\)/\1\2\3/' \</userinput>
<userinput>&nbsp;&nbsp;&nbsp;src/useradd.c &gt; tmp~ &amp;&amp;</userinput>
<userinput>mv tmp~ src/useradd.c &amp;&amp;</userinput>
<userinput>./configure --prefix=/usr &amp;&amp;</userinput>
<userinput>make &amp;&amp;</userinput>
<userinput>make install &amp;&amp;</userinput>
<userinput>cd etc &amp;&amp;</userinput>
<userinput>cp limits login.access /etc &amp;&amp;</userinput>
<userinput>sed 's%/var/spool/mail%/var/mail%' login.defs.linux &gt; /etc/login.defs &amp;&amp;</userinput>
<userinput>cd /lib &amp;&amp;</userinput>
<userinput>mv libshadow.a /usr/lib &amp;&amp;</userinput>
<userinput>mv libshadow.la /usr/lib &amp;&amp;</userinput>
<userinput>ln -sf libshadow.so.0 libshadow.so &amp;&amp;</userinput>
<userinput>cd /usr/lib &amp;&amp;</userinput>
<userinput>ln -sf ../../lib/libshadow.so</userinput></screen></para>

</sect2>