blob: 371c76066154d1041a56e5cbe902a59f6a855337 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
<sect2><title> </title><para> </para></sect2>
<sect2>
<title>Installation of Inetutils</title>
<para>Prepare Inetutils for compilation:</para>
<para><screen><userinput>./configure --prefix=/usr --disable-syslogd \
--libexecdir=/usr/sbin --disable-logger \
--sysconfdir=/etc --localstatedir=/var
</userinput></screen></para>
<para>The meanings of the configure options are:</para>
<itemizedlist>
<listitem><para><userinput>--disable-syslogd</userinput>: This option
prevents inetutils from installing the System Log Daemon, which is
installed with the Sysklogd package.</para></listitem>
<listitem><para><userinput>--disable-logger</userinput>: This option
prevents inetutils from installing the logger program, which is used by
scripts to pass messages to the System Log Daemon. We do not install it
because Util-linux installs a better version later.</para></listitem>
<listitem><para><userinput>--sysconfdir=/etc</userinput>: This option
tells the binaries created by the package to look in /etc for their
configuration files</para></listitem>
</itemizedlist>
<para>Compile the package:</para>
<para><screen><userinput>make</userinput></screen></para>
<para>Install it:</para>
<para><screen><userinput>make install</userinput></screen></para>
<para>And move the <userinput>ping</userinput> program to its proper place:</para>
<para><screen><userinput>mv /usr/bin/ping /bin</userinput></screen></para>
</sect2>
|