source: chapter06/inetutils.xml@ f1c177f

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 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 f1c177f was f1c177f, checked in by Matthew Burgess <matthew@…>, 12 years ago

Upgrade to Glibc-2.16.0. Fixes #3131.

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

  • Property mode set to 100644
File size: 8.9 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/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 <sect1info condition="script">
12 <productname>inetutils</productname>
13 <productnumber>&inetutils-version;</productnumber>
14 <address>&inetutils-url;</address>
15 </sect1info>
16
17 <title>Inetutils-&inetutils-version;</title>
18
19 <indexterm zone="ch-system-inetutils">
20 <primary sortas="a-Inetutils">Inetutils</primary>
21 </indexterm>
22
23 <sect2 role="package">
24 <title/>
25
26 <para>The Inetutils package contains programs for basic networking.</para>
27
28 <segmentedlist>
29 <segtitle>&buildtime;</segtitle>
30 <segtitle>&diskspace;</segtitle>
31
32 <seglistitem>
33 <seg>&inetutils-ch6-sbu;</seg>
34 <seg>&inetutils-ch6-du;</seg>
35 </seglistitem>
36 </segmentedlist>
37
38 </sect2>
39
40 <sect2 role="installation">
41 <title>Installation of Inetutils</title>
42
43 <para>Fix an incompatibility between this package and Glibc-&glibc-version;</para>
44
45<screen><userinput remap="pre">sed -i -e '/gets is a/d' lib/stdio.in.h</userinput></screen>
46
47 <para>Prepare Inetutils for compilation:</para>
48
49<screen><userinput remap="configure">./configure --prefix=/usr \
50 --libexecdir=/usr/sbin \
51 --localstatedir=/var \
52 --disable-ifconfig \
53 --disable-logger \
54 --disable-syslogd \
55 --disable-whois \
56 --disable-servers</userinput></screen>
57
58 <variablelist>
59 <title>The meaning of the configure options:</title>
60
61 <varlistentry>
62 <term><parameter>--disable-ifconfig</parameter></term>
63 <listitem>
64 <para>This option prevents Inetutils from installing the
65 <command>ifconfig</command> program, which can be used to configure network
66 interfaces. LFS uses <command>ip</command> from IPRoute2 to perform
67 this task.</para>
68 </listitem>
69 </varlistentry>
70
71 <varlistentry>
72 <term><parameter>--disable-logger</parameter></term>
73 <listitem>
74 <para>This option prevents Inetutils from installing the
75 <command>logger</command> program, which is used by scripts to
76 pass messages to the System Log Daemon. Do not install it because
77 Util-linux installed a version earlier.</para>
78 </listitem>
79 </varlistentry>
80
81 <varlistentry>
82 <term><parameter>--disable-syslogd</parameter></term>
83 <listitem>
84 <para>This option prevents Inetutils from installing the System Log
85 Daemon, which is installed with the Sysklogd package.</para>
86 </listitem>
87 </varlistentry>
88
89 <varlistentry>
90 <term><parameter>--disable-whois</parameter></term>
91 <listitem>
92 <para>This option disables the building of the Inetutils
93 <command>whois</command> client, which is out of date. Instructions for
94 a better <command>whois</command> client are in the BLFS book.</para>
95 </listitem>
96 </varlistentry>
97
98 <varlistentry>
99 <term><parameter>--disable-servers</parameter></term>
100 <listitem>
101 <para>This disables the installation of the various network servers
102 included as part of the Inetutils package. These servers are deemed not
103 appropriate in a basic LFS system. Some are insecure by nature and are
104 only considered safe on trusted networks. More information can be found
105 at <ulink url="&blfs-root;view/svn/basicnet/inetutils.html"/>. Note that
106 better replacements are available for many of these servers.</para>
107 </listitem>
108 </varlistentry>
109
110 </variablelist>
111
112 <para>Compile the package:</para>
113
114<screen><userinput remap="make">make</userinput></screen>
115
116 <para>To test the results, issue:</para>
117
118<screen><userinput remap="test">make check</userinput></screen>
119
120 <para>Install the package:</para>
121
122<screen><userinput remap="install">make install
123make -C doc html
124make -C doc install-html docdir=/usr/share/doc/inetutils-&inetutils-version;</userinput></screen>
125
126 <para>Move some programs to their FHS-compliant place:</para>
127
128<screen><userinput remap="install">mv -v /usr/bin/{hostname,ping,ping6} /bin
129mv -v /usr/bin/traceroute /sbin</userinput></screen>
130
131 </sect2>
132
133 <sect2 id="contents-inetutils" role="content">
134 <title>Contents of Inetutils</title>
135
136 <segmentedlist>
137 <segtitle>Installed programs</segtitle>
138
139 <seglistitem>
140 <seg>ftp, hostname, ping, ping6, rcp, rexec, rlogin, rsh, talk, telnet,
141 tftp, and traceroute</seg>
142 </seglistitem>
143 </segmentedlist>
144
145 <variablelist>
146 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
147 <?dbfo list-presentation="list"?>
148 <?dbhtml list-presentation="table"?>
149
150 <varlistentry id="ftp">
151 <term><command>ftp</command></term>
152 <listitem>
153 <para>Is the file transfer protocol program</para>
154 <indexterm zone="ch-system-inetutils ftp">
155 <primary sortas="b-ftp">ftp</primary>
156 </indexterm>
157 </listitem>
158 </varlistentry>
159
160 <varlistentry id="hostname">
161 <term><command>hostname</command></term>
162 <listitem>
163 <para>Reports or sets the name of the host</para>
164 <indexterm zone="ch-system-inetutils hostname">
165 <primary sortas="b-hostname">hostname</primary>
166 </indexterm>
167 </listitem>
168 </varlistentry>
169
170 <varlistentry id="ping">
171 <term><command>ping</command></term>
172 <listitem>
173 <para>Sends echo-request packets and reports how long the replies
174 take</para>
175 <indexterm zone="ch-system-inetutils ping">
176 <primary sortas="b-ping">ping</primary>
177 </indexterm>
178 </listitem>
179 </varlistentry>
180
181 <varlistentry id="ping6">
182 <term><command>ping6</command></term>
183 <listitem>
184 <para>A version of <command>ping</command> for IPv6 networks</para>
185 <indexterm zone="ch-system-inetutils ping6">
186 <primary sortas="b-ping6">ping6</primary>
187 </indexterm>
188 </listitem>
189 </varlistentry>
190
191 <varlistentry id="rcp">
192 <term><command>rcp</command></term>
193 <listitem>
194 <para>Performs remote file copy</para>
195 <indexterm zone="ch-system-inetutils rcp">
196 <primary sortas="b-rcp">rcp</primary>
197 </indexterm>
198 </listitem>
199 </varlistentry>
200
201 <varlistentry id="rexec">
202 <term><command>rexec</command></term>
203 <listitem>
204 <para>executes commands on a remote host</para>
205 <indexterm zone="ch-system-inetutils rexec">
206 <primary sortas="b-rexec">rexec</primary>
207 </indexterm>
208 </listitem>
209 </varlistentry>
210
211 <varlistentry id="rlogin">
212 <term><command>rlogin</command></term>
213 <listitem>
214 <para>Performs remote login</para>
215 <indexterm zone="ch-system-inetutils rlogin">
216 <primary sortas="b-rlogin">rlogin</primary>
217 </indexterm>
218 </listitem>
219 </varlistentry>
220
221 <varlistentry id="rsh">
222 <term><command>rsh</command></term>
223 <listitem>
224 <para>Runs a remote shell</para>
225 <indexterm zone="ch-system-inetutils rsh">
226 <primary sortas="b-rsh">rsh</primary>
227 </indexterm>
228 </listitem>
229 </varlistentry>
230
231 <varlistentry id="talk">
232 <term><command>talk</command></term>
233 <listitem>
234 <para>Is used to chat with another user</para>
235 <indexterm zone="ch-system-inetutils talk">
236 <primary sortas="b-talk">talk</primary>
237 </indexterm>
238 </listitem>
239 </varlistentry>
240
241 <varlistentry id="telnet">
242 <term><command>telnet</command></term>
243 <listitem>
244 <para>An interface to the TELNET protocol</para>
245 <indexterm zone="ch-system-inetutils telnet">
246 <primary sortas="b-telnet">telnet</primary>
247 </indexterm>
248 </listitem>
249 </varlistentry>
250
251 <varlistentry id="tftp">
252 <term><command>tftp</command></term>
253 <listitem>
254 <para>A trivial file transfer program</para>
255 <indexterm zone="ch-system-inetutils tftp">
256 <primary sortas="b-tftp">tftp</primary>
257 </indexterm>
258 </listitem>
259 </varlistentry>
260
261 <varlistentry id="traceroute">
262 <term><command>traceroute</command></term>
263 <listitem>
264 <para>Traces the route your packets take from the host you are
265 working on to another host on a network, showing all the intermediate
266 hops (gateways) along the way</para>
267 <indexterm zone="ch-system-inetutils traceroute">
268 <primary sortas="b-traceroute">traceroute</primary>
269 </indexterm>
270 </listitem>
271 </varlistentry>
272
273 </variablelist>
274
275 </sect2>
276
277</sect1>
Note: See TracBrowser for help on using the repository browser.