The Inetutils package contains programs for basic networking.
Not all programs that come with Inetutils will be installed. However, the Inetutils build system will insist on installing all the man pages anyway. The following patch will correct this situation:
patch -Np1 -i ../inetutils-1.4.2-no_server_man_pages-1.patch
This patch addresses build issues with GCC 4.1.1:
patch -Np1 -i ../inetutils-1.4.2-gcc4_fixes-3.patch
This patch addresses an issue where telnet on certain machines will only send to 255.255.255.255. This was due to change in the way glibc handles inet_addr. Apply the following patch to correct this issue:
patch -Np1 -i ../inetutils-1.4.2-inet_addr_fix-1.patch
Prepare Inetutils for compilation:
CC="gcc ${BUILD64}" ./configure --prefix=/usr --libexecdir=/usr/sbin \ --sysconfdir=/etc --localstatedir=/var \ --disable-logger --disable-syslogd \ --disable-whois --disable-servers
The meaning of the configure options:
This option prevents Inetutils from installing the logger program, which is used by scripts to pass messages to the System Log Daemon. Do not install it because Util-linux installs a better version later.
This option prevents Inetutils from installing the System Log Daemon, which is installed with the Sysklogd package.
This option disables the building of the Inetutils whois client, which is out of date. Instructions for a better whois client are in the BLFS book.
This disables the installation of the various network servers included as part of the Inetutils package. These servers are deemed not appropriate in a basic CLFS system. Some are insecure by nature and are only considered safe on trusted networks. More information can be found at http://www.linuxfromscratch.org/blfs/view/svn/basicnet/inetutils.html. Note that better replacements are available for many of these servers.
Compile the package:
make
This package does not come with a test suite.
Install the package:
make install
Move the ping program to its FHS-compliant place:
mv -v /usr/bin/ping /bin