Move fuser to /bin to comply with the FHS. Fixes #2736.

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@9356 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
This commit is contained in:
Matthew Burgess 2010-08-15 18:30:57 +00:00
parent 35c3951268
commit d48e6eb263
2 changed files with 13 additions and 2 deletions

View File

@ -40,6 +40,11 @@
<listitem> <listitem>
<para>2010-08-15</para> <para>2010-08-15</para>
<itemizedlist> <itemizedlist>
<listitem>
<para>[matthew] - Move the fuser program to the root filesystem as it
is used in the netfs bootscript. Fixes
<ulink url="&lfs-ticket-root;2736">#2736</ulink>.</para>
</listitem>
<listitem> <listitem>
<para>[matthew] - Build peekfd on x86_64 as well as x86. Fixes <para>[matthew] - Build peekfd on x86_64 as well as x86. Fixes
<ulink url="&lfs-ticket-root;2734">#2734</ulink>.</para> <ulink url="&lfs-ticket-root;2734">#2734</ulink>.</para>

View File

@ -64,12 +64,18 @@
installed. This usually is not a problem because it is installed later installed. This usually is not a problem because it is installed later
in the Sysvinit package, which provides a better in the Sysvinit package, which provides a better
<command>pidof</command> program. If Sysvinit will not be used for a <command>pidof</command> program. If Sysvinit will not be used for a
particular system, complete the installation of Psmisc by creating the particular system, complete the installation of Psmisc by first moving
following symlink:</para> the <command>killall</command> to the correct location, as specified by the
FHS, then create a symlink to it:</para>
<screen><userinput remap="install">mv /usr/bin/killall /bin <screen><userinput remap="install">mv /usr/bin/killall /bin
ln -sv killall /bin/pidof</userinput></screen> ln -sv killall /bin/pidof</userinput></screen>
<para>Finally, move the <command>fuser</command> program to the location
specified by the FHS:</para>
<screen><userinput remap="install">mv /usr/bin/fuser /bin</userinput></screen>
</sect2> </sect2>
<sect2 id="contents-psmisc" role="content"> <sect2 id="contents-psmisc" role="content">