2002-07-08 04:28:42 +08:00
|
|
|
<sect2>
|
|
|
|
<title>Command explanations</title>
|
|
|
|
|
2003-04-06 02:00:27 +08:00
|
|
|
<para><screen><userinput>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</userinput></screen>
|
2003-04-12 09:58:10 +08:00
|
|
|
These commands change the installation directory to
|
|
|
|
<filename>/usr/sbin</filename> from the default
|
|
|
|
of <filename>/usr/local/bin</filename>. Since these tools are used in conjunction with daemons,
|
2002-07-08 04:28:42 +08:00
|
|
|
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:
|
2003-04-06 02:00:27 +08:00
|
|
|
<screen><userinput>cd /usr/sbin
|
|
|
|
mv tcpclient *@ mconnect delcr addcr tcpcat /usr/bin</userinput></screen>This
|
2003-04-12 09:58:10 +08:00
|
|
|
will place the client related programs into <filename>/usr/bin</filename> for general use.</para>
|
2002-07-08 04:28:42 +08:00
|
|
|
|
|
|
|
</sect2>
|
|
|
|
|