mirror of
https://github.com/Zeckmathederg/glfs.git
synced 2025-02-09 19:57:18 +08:00
git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@1304 af4574ff-66df-0310-9fd7-8a98e5e911e0
22 lines
972 B
XML
22 lines
972 B
XML
<sect2>
|
|
<title>Command explanations</title>
|
|
|
|
<para><screen><command>sed 's|/usr/local|/usr|' conf-home > conf-home~
|
|
mv conf-home~ conf-home
|
|
sed 's/bin/sbin/' hier.c > hier.c~
|
|
mv hier.c~ hier.c</command></screen>
|
|
These commands change the installation directory to
|
|
<filename class="directory">/usr/sbin</filename> from the default
|
|
of <filename class="directory">/usr/local/bin</filename>. Since these tools
|
|
are used in conjunction with daemons, they don't make much sense in general
|
|
user directories. However, some of the example programs and the
|
|
<command>tcpclient</command> program might be of use to non-root users.
|
|
If you wish to make these available, then we would suggest installing as above,
|
|
and then executing the following commands:
|
|
<screen><command>cd /usr/sbin mv tcpclient *@ mconnect delcr addcr tcpcat /usr/bin</command></screen>
|
|
This will place the client related programs into <filename>/usr/bin</filename>
|
|
for general use.</para>
|
|
|
|
</sect2>
|
|
|