[Bug 245] Added a symlink from vipw to vigr

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@1510 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
This commit is contained in:
Marc Heerdink 2002-01-30 16:16:20 +00:00
parent d6bc819962
commit b1bc8e0120
3 changed files with 13 additions and 1 deletions

View File

@ -24,6 +24,9 @@
<itemizedlist> <itemizedlist>
<listitem><para>January 30th, 2002 [marcheerdink]: Chapters 6: Added a
symlink from vipw to vigr after installing shadow.</para></listitem>
<listitem><para>January 30th, 2002 [markh]: Chapters 5+6: Changed <listitem><para>January 30th, 2002 [markh]: Chapters 5+6: Changed
binutils and e2fsprogs installation instructions to use seperate binutils and e2fsprogs installation instructions to use seperate
directories ala gcc and glibc.</para></listitem> directories ala gcc and glibc.</para></listitem>

View File

@ -15,5 +15,10 @@ details on the system.</para>
/etc/login.defs</userinput>: /var/spool/mail is the old location of the /etc/login.defs</userinput>: /var/spool/mail is the old location of the
user mailboxes. The location that is used nowadays is /var/mail.</para> user mailboxes. The location that is used nowadays is /var/mail.</para>
<para><userinput>ln -sf vipw vigr</userinput> and
<userinput>ln -sf vipw.8 vigr.8</userinput>: According to the manpage of
vipw, vigr should be a symlink to it. Because the shadow installation
procedure doesn't create these symlinks, we create them manually.</para>
</sect2> </sect2>

View File

@ -22,7 +22,11 @@ cd /lib &amp;&amp;
mv libshadow.*a /usr/lib &amp;&amp; mv libshadow.*a /usr/lib &amp;&amp;
ln -sf libshadow.so.0 libshadow.so &amp;&amp; ln -sf libshadow.so.0 libshadow.so &amp;&amp;
cd /usr/lib &amp;&amp; cd /usr/lib &amp;&amp;
ln -sf ../../lib/libshadow.so</userinput></screen></para> ln -sf ../../lib/libshadow.so &amp;&amp;
cd /usr/sbin &amp;&amp;
ln -sf vipw vigr &amp;&amp;
cd /usr/share/man/man8 &amp;&amp;
ln -sf vipw.8 vigr.8</userinput></screen></para>
</sect2> </sect2>