inetutils.xml 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. <sect1 id="ch06-inetutils">
  2. <title>Installing Inetutils-&inetutils-version;</title>
  3. <?dbhtml filename="inetutils.html" dir="chapter06"?>
  4. <screen>Estimated build time: &inetutils-time;
  5. Estimated required disk space: &inetutils-compsize;</screen>
  6. &aa-inetutils-shortdesc;
  7. &aa-inetutils-dep;
  8. <sect2><title>&nbsp;</title><para>&nbsp;</para></sect2>
  9. <sect2>
  10. <title>Installation of Inetutils</title>
  11. <para>We are not going to install all the programs that come with Inetutils.
  12. However, the Inetutils build system will insist on installing all the man
  13. pages anyway. The following patch will correct this situation:</para>
  14. <screen><userinput>patch -Np1 -i ../&inetutils-no-server-man-pages-patch;</userinput></screen>
  15. <para>Now prepare Inetutils for compilation:</para>
  16. <screen><userinput>./configure --prefix=/usr --disable-syslogd \
  17. &nbsp;&nbsp;&nbsp;&nbsp;--libexecdir=/usr/sbin --disable-logger \
  18. &nbsp;&nbsp;&nbsp;&nbsp;--sysconfdir=/etc --localstatedir=/var \
  19. &nbsp;&nbsp;&nbsp;&nbsp;--disable-whois --disable-servers</userinput></screen>
  20. <para>The meaning of the configure options:</para>
  21. <itemizedlist>
  22. <listitem><para><userinput>--disable-syslogd</userinput>: This option
  23. prevents inetutils from installing the System Log Daemon, which is
  24. installed with the Sysklogd package.</para></listitem>
  25. <listitem><para><userinput>--disable-logger</userinput>: This option
  26. prevents inetutils from installing the logger program, which is used by
  27. scripts to pass messages to the System Log Daemon. We do not install it
  28. because Util-linux installs a better version later.</para></listitem>
  29. <listitem><para><userinput>--disable-whois</userinput>: This option disables
  30. the building of the inetutils whois client, which is woefully out of date.
  31. Instructions for a better whois client are in the BLFS book.</para></listitem>
  32. <listitem><para><userinput>--disable-servers</userinput>: This disables the
  33. installation of the various network servers included as part of the Inetutils
  34. package. These servers are deemed not appropriate in a basic LFS system. Some
  35. are insecure by nature and are only considered safe on trusted networks. More
  36. information can be found at
  37. <ulink url="&blfs-root;view/stable/basicnet/inetutils.html"/>. Note that better
  38. replacements are available for many of these servers.</para></listitem>
  39. </itemizedlist>
  40. <para>Compile the package:</para>
  41. <screen><userinput>make</userinput></screen>
  42. <para>Install it:</para>
  43. <screen><userinput>make install</userinput></screen>
  44. <para>And move the <userinput>ping</userinput> program to its proper place:</para>
  45. <screen><userinput>mv /usr/bin/ping /bin</userinput></screen>
  46. </sect2>
  47. </sect1>