source: chapter06/inetutils.xml@ 2084b36

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 12.2-rc1 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 2084b36 was 90aae6b, checked in by Matthew Burgess <matthew@…>, 15 years ago

Update various packages' list of installed programs and libraries. Many thanks to Chris Staub for the patch. Fixes #2371.

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

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