source: chapter06/inetutils.xml@ 6aeced4

10.0 10.0-rc1 10.1 10.1-rc1 11.0 11.0-rc1 11.0-rc2 11.0-rc3 11.1 11.1-rc1 11.2 11.2-rc1 11.3 11.3-rc1 12.0 12.0-rc1 12.1 12.1-rc1 6.3 6.4 6.5 6.6 6.7 6.8 7.0 7.1 7.2 7.3 7.4 7.5 7.5-systemd 7.6 7.6-systemd 7.7 7.7-systemd 7.8 7.8-systemd 7.9 7.9-systemd 8.0 8.1 8.2 8.3 8.4 9.0 9.1 arm bdubbs/gcc13 ml-11.0 multilib renodr/libudev-from-systemd s6-init trunk xry111/arm64 xry111/arm64-12.0 xry111/clfs-ng xry111/lfs-next xry111/loongarch xry111/loongarch-12.0 xry111/loongarch-12.1 xry111/mips64el xry111/pip3 xry111/rust-wip-20221008 xry111/update-glibc
Last change on this file since 6aeced4 was 6aeced4, checked in by Matthew Burgess <matthew@…>, 17 years ago

Prevent inetutils from installing ifconfig as LFS uses ip to configure network interfaces. Fixes #1914.

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@7871 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

  • Property mode set to 100644
File size: 7.1 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
3 "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../general.ent">
5 %general-entities;
6]>
7
8<sect1 id="ch-system-inetutils" role="wrap">
9 <?dbhtml filename="inetutils.html"?>
10
11 <title>Inetutils-&inetutils-version;</title>
12
13 <indexterm zone="ch-system-inetutils">
14 <primary sortas="a-Inetutils">Inetutils</primary>
15 </indexterm>
16
17 <sect2 role="package">
18 <title/>
19
20 <para>The Inetutils package contains programs for basic networking.</para>
21
22 <segmentedlist>
23 <segtitle>&buildtime;</segtitle>
24 <segtitle>&diskspace;</segtitle>
25
26 <seglistitem>
27 <seg>&inetutils-ch6-sbu;</seg>
28 <seg>&inetutils-ch6-du;</seg>
29 </seglistitem>
30 </segmentedlist>
31
32 </sect2>
33
34 <sect2 role="installation">
35 <title>Installation of Inetutils</title>
36
37 <para>All programs that come with Inetutils will not be installed.
38 However, the Inetutils build system will insist on installing all the
39 man pages anyway. The following patch will correct this
40 situation:</para>
41
42<screen><userinput>patch -Np1 -i ../&inetutils-man_pages-patch;</userinput></screen>
43
44<para>Prepare Inetutils for compilation:</para>
45
46<screen><userinput>./configure --prefix=/usr --libexecdir=/usr/sbin \
47 --sysconfdir=/etc --localstatedir=/var \
48 --disable-ifconfig --disable-logger --disable-syslogd \
49 --disable-whois --disable-servers</userinput></screen>
50
51 <variablelist>
52 <title>The meaning of the configure options:</title>
53
54 <varlistentry>
55 <term><parameter>--disable-ifconfig</parameter></term>
56 <listitem>
57 <para>This option prevents Inetutils from installing the
58 <command>ifconfig</command>, which can be used to configure network
59 interfaces. LFS uses <command>ip</command> from IPRoute2 to perform
60 this task.</para>
61 </listitem>
62 </varlistentry>
63
64 <varlistentry>
65 <term><parameter>--disable-logger</parameter></term>
66 <listitem>
67 <para>This option prevents Inetutils from installing the
68 <command>logger</command> program, which is used by scripts to
69 pass messages to the System Log Daemon. Do not install it because
70 Util-linux installs a better version later.</para>
71 </listitem>
72 </varlistentry>
73
74 <varlistentry>
75 <term><parameter>--disable-syslogd</parameter></term>
76 <listitem>
77 <para>This option prevents Inetutils from installing the System Log
78 Daemon, which is installed with the Sysklogd package.</para>
79 </listitem>
80 </varlistentry>
81
82 <varlistentry>
83 <term><parameter>--disable-whois</parameter></term>
84 <listitem>
85 <para>This option disables the building of the Inetutils
86 <command>whois</command> client, which is out of date. Instructions for
87 a better <command>whois</command> client are in the BLFS book.</para>
88 </listitem>
89 </varlistentry>
90
91 <varlistentry>
92 <term><parameter>--disable-servers</parameter></term>
93 <listitem>
94 <para>This disables the installation of the various network servers
95 included as part of the Inetutils package. These servers are deemed not
96 appropriate in a basic LFS system. Some are insecure by nature and are
97 only considered safe on trusted networks. More information can be found
98 at <ulink url="&blfs-root;view/svn/basicnet/inetutils.html"/>. Note that
99 better replacements are available for many of these servers.</para>
100 </listitem>
101 </varlistentry>
102
103 </variablelist>
104
105 <para>Compile the package:</para>
106
107<screen><userinput>make</userinput></screen>
108
109 <para>This package does not come with a test suite.</para>
110
111 <para>Install the package:</para>
112
113<screen><userinput>make install</userinput></screen>
114
115 <para>Move the <command>ping</command> program to its FHS-compliant
116 place:</para>
117
118<screen><userinput>mv -v /usr/bin/ping /bin</userinput></screen>
119
120 </sect2>
121
122 <sect2 id="contents-inetutils" role="content">
123 <title>Contents of Inetutils</title>
124
125 <segmentedlist>
126 <segtitle>Installed programs</segtitle>
127
128 <seglistitem>
129 <seg>ftp, ping, rcp, rlogin, rsh, talk, telnet, and tftp</seg>
130 </seglistitem>
131 </segmentedlist>
132
133 <variablelist>
134 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
135 <?dbfo list-presentation="list"?>
136 <?dbhtml list-presentation="table"?>
137
138 <varlistentry id="ftp">
139 <term><command>ftp</command></term>
140 <listitem>
141 <para>Is the file transfer protocol program</para>
142 <indexterm zone="ch-system-inetutils ftp">
143 <primary sortas="b-ftp">ftp</primary>
144 </indexterm>
145 </listitem>
146 </varlistentry>
147
148 <varlistentry id="ping">
149 <term><command>ping</command></term>
150 <listitem>
151 <para>Sends echo-request packets and reports how long the replies
152 take</para>
153 <indexterm zone="ch-system-inetutils ping">
154 <primary sortas="b-ping">ping</primary>
155 </indexterm>
156 </listitem>
157 </varlistentry>
158
159 <varlistentry id="rcp">
160 <term><command>rcp</command></term>
161 <listitem>
162 <para>Performs remote file copy</para>
163 <indexterm zone="ch-system-inetutils rcp">
164 <primary sortas="b-rcp">rcp</primary>
165 </indexterm>
166 </listitem>
167 </varlistentry>
168
169 <varlistentry id="rlogin">
170 <term><command>rlogin</command></term>
171 <listitem>
172 <para>Performs remote login</para>
173 <indexterm zone="ch-system-inetutils rlogin">
174 <primary sortas="b-rlogin">rlogin</primary>
175 </indexterm>
176 </listitem>
177 </varlistentry>
178
179 <varlistentry id="rsh">
180 <term><command>rsh</command></term>
181 <listitem>
182 <para>Runs a remote shell</para>
183 <indexterm zone="ch-system-inetutils rsh">
184 <primary sortas="b-rsh">rsh</primary>
185 </indexterm>
186 </listitem>
187 </varlistentry>
188
189 <varlistentry id="talk">
190 <term><command>talk</command></term>
191 <listitem>
192 <para>Is used to chat with another user</para>
193 <indexterm zone="ch-system-inetutils talk">
194 <primary sortas="b-talk">talk</primary>
195 </indexterm>
196 </listitem>
197 </varlistentry>
198
199 <varlistentry id="telnet">
200 <term><command>telnet</command></term>
201 <listitem>
202 <para>An interface to the TELNET protocol</para>
203 <indexterm zone="ch-system-inetutils telnet">
204 <primary sortas="b-telnet">telnet</primary>
205 </indexterm>
206 </listitem>
207 </varlistentry>
208
209 <varlistentry id="tftp">
210 <term><command>tftp</command></term>
211 <listitem>
212 <para>A trivial file transfer program</para>
213 <indexterm zone="ch-system-inetutils tftp">
214 <primary sortas="b-tftp">tftp</primary>
215 </indexterm>
216 </listitem>
217 </varlistentry>
218
219 </variablelist>
220
221 </sect2>
222
223</sect1>
Note: See TracBrowser for help on using the repository browser.