inetutils-inst.xml 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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. <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. &nbsp;&nbsp;&nbsp;&nbsp;--disable-whois --disable-servers</userinput></screen>
  9. <para>The meaning of the configure options:</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>--disable-whois</userinput>: This option disables
  19. the building of the inetutils whois client, which is woefully out of date.
  20. Instructions for a better whois client are in the BLFS book.</para></listitem>
  21. <listitem><para><userinput>--disable-servers</userinput>: This disables the
  22. installation of the various network servers included as part of the Inetutils
  23. package. These servers are deemed not appropriate in a basic LFS system. Some
  24. are insecure by nature and are only considered safe on trusted networks. More
  25. information can be found at
  26. <ulink url="&blfs-root;view/stable/basicnet/inetutils.html"/>. Note that better
  27. replacements are available for many of these servers.</para></listitem>
  28. </itemizedlist>
  29. <para>Compile the package:</para>
  30. <screen><userinput>make</userinput></screen>
  31. <para>Install it:</para>
  32. <screen><userinput>make install</userinput></screen>
  33. <para>And move the <userinput>ping</userinput> program to its proper place:</para>
  34. <screen><userinput>mv /usr/bin/ping /bin</userinput></screen>
  35. </sect2>