diff options
author | Matthew Burgess <matthew@linuxfromscratch.org> | 2010-08-15 18:30:57 +0000 |
---|---|---|
committer | Matthew Burgess <matthew@linuxfromscratch.org> | 2010-08-15 18:30:57 +0000 |
commit | d48e6eb263fd54705d3889f510ad7709f4ccea66 (patch) | |
tree | d7d7aeaee2accd8d654f116805d85655ad314b9a /chapter06 | |
parent | 35c395126803b54fec25d47bcef425c114405f4a (diff) |
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
Diffstat (limited to 'chapter06')
-rw-r--r-- | chapter06/psmisc.xml | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/chapter06/psmisc.xml b/chapter06/psmisc.xml index 2e7561014..305b66110 100644 --- a/chapter06/psmisc.xml +++ b/chapter06/psmisc.xml @@ -64,12 +64,18 @@ installed. This usually is not a problem because it is installed later in the Sysvinit package, which provides a better <command>pidof</command> program. If Sysvinit will not be used for a - particular system, complete the installation of Psmisc by creating the - following symlink:</para> + particular system, complete the installation of Psmisc by first moving + 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 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 id="contents-psmisc" role="content"> |