inetutils-inst.xml 1.5 KB

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