aboutsummaryrefslogtreecommitdiffstats
path: root/chapter06/inetutils.xml
blob: 6ef16b16f764a7753545159c6b230f49fa5039a0 (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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN" "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
  <!ENTITY % general-entities SYSTEM "../general.ent">
  %general-entities;
]>
<sect1 id="ch-system-inetutils" xreflabel="Inetutils">
<title>Inetutils-&inetutils-version;</title>
<?dbhtml filename="inetutils.html"?>

<indexterm zone="ch-system-inetutils"><primary sortas="a-Inetutils">Inetutils</primary></indexterm>

<para>The Inetutils package contains programs for basic networking.</para>

<screen>&buildtime; 0.2 SBU
&diskspace; 11 MB</screen>

<para>Inetutils installation depends on: Bash, Binutils, Coreutils,
Diffutils, GCC, Glibc, Grep, Make, Ncurses, Sed.</para>



<sect2>
<title>Installation of Inetutils</title>

<para>Inetutils has issues with the Linux 2.6 kernel series - fix these isues
by applying the following patch:</para>

<screen><userinput>patch -Np1 -i ../inetutils-&inetutils-version;-kernel-2.6-1.patch</userinput></screen>

<para>We are not going to install all the programs that come with Inetutils.
However, the Inetutils build system will insist on installing all the man
pages anyway. The following patch will correct this situation:</para>

<screen><userinput>patch -Np1 -i ../inetutils-&inetutils-version;-no_server_man_pages-1.patch</userinput></screen>

<para>Now prepare Inetutils for compilation:</para>

<screen><userinput>./configure --prefix=/usr --libexecdir=/usr/sbin \
    --sysconfdir=/etc --localstatedir=/var \
    --disable-logger --disable-syslogd \
    --disable-whois --disable-servers</userinput></screen>

<para>The meaning of the configure options:</para>

<itemizedlist>
<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>--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-whois</userinput>: This option disables
the building of the Inetutils whois client, which is woefully out of date.
Instructions for a better whois client are in the BLFS book.</para></listitem>

<listitem><para><userinput>--disable-servers</userinput>: 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 LFS system. Some
are insecure by nature and are only considered safe on trusted networks. More
information can be found at
<ulink url="&blfs-root;view/stable/basicnet/inetutils.html"/>. Note that better
replacements are available for many of these servers.</para></listitem>
</itemizedlist>

<para>Compile the package:</para>

<screen><userinput>make</userinput></screen>

<para>Install it:</para>

<screen><userinput>make install</userinput></screen>

<para>Move the <command>ping</command> program to its FHS-compliant
place:</para>

<screen><userinput>mv /usr/bin/ping /bin</userinput></screen>

</sect2>


<sect2 id="contents-inetutils"><title>Contents of Inetutils</title>

<para><emphasis>Installed programs</emphasis>: ftp, ping, rcp, rlogin, rsh,
talk, telnet and tftp</para>

</sect2>

<sect2><title>Short descriptions</title>

<indexterm zone="ch-system-inetutils ftp"><primary sortas="b-ftp">ftp</primary></indexterm>
<para id="ftp"><command>ftp</command> is the ARPANET file transfer program.</para>

<indexterm zone="ch-system-inetutils ping"><primary sortas="b-ping">ping</primary></indexterm>
<para id="ping"><command>ping</command> sends echo-request packets and reports how
long the replies take.</para>

<indexterm zone="ch-system-inetutils rcp"><primary sortas="b-rcp">rcp</primary></indexterm>
<para id="rcp"><command>rcp</command> does remote file copy.</para>

<indexterm zone="ch-system-inetutils rlogin"><primary sortas="b-rlogin">rlogin</primary></indexterm>
<para id="rlogin"><command>rlogin</command> does remote login.</para>

<indexterm zone="ch-system-inetutils rsh"><primary sortas="b-rsh">rsh</primary></indexterm>
<para id="rsh"><command>rsh</command> runs a remote shell.</para>

<indexterm zone="ch-system-inetutils talk"><primary sortas="b-talk">talk</primary></indexterm>
<para id="talk"><command>talk</command> is used to chat up another user.</para>

<indexterm zone="ch-system-inetutils telnet"><primary sortas="b-telnet">telnet</primary></indexterm>
<para id="telnet"><command>telnet</command> is an interface to the TELNET protocol.</para>

<indexterm zone="ch-system-inetutils tftp"><primary sortas="b-tftp">tftp</primary></indexterm>
<para id="tftp"><command>tftp</command> is a trivial file transfer program.</para>

</sect2>



</sect1>