mirror of
https://github.com/Zeckmathederg/glfs.git
synced 2025-02-01 13:02:35 +08:00
f45b195302
git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@3 af4574ff-66df-0310-9fd7-8a98e5e911e0
20 lines
953 B
XML
20 lines
953 B
XML
<sect2>
|
|
<title>Command explanations</title>
|
|
|
|
<para><screen><userinput>sed 's|/usr/local|/usr|' conf-home > conf-home~</userinput>
|
|
<userinput>mv conf-home~ conf-home</userinput>
|
|
<userinput>sed 's/bin/sbin/' hier.c > hier.c~</userinput>
|
|
<userinput>mv hier.c~ hier.c :</userinput></screen>
|
|
These commands change the installation directory to /usr/sbin from the default
|
|
of /usr/local/bin. Since these tools are used in conjuction with daemons,
|
|
they don't make much sense in general user directories. However, some of the
|
|
example programs and the tcpclient 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><userinput>cd /usr/sbin</userinput>
|
|
<userinput>mv tcpclient *@ mconnect delcr addcr tcpcat /usr/bin</userinput></screen>This
|
|
will place the client related programs into /usr/bin for general use.</para>
|
|
|
|
</sect2>
|
|
|