source: chapter06/inetutils.xml@ a5db3be4

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.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 a5db3be4 was 1cdaff9, checked in by Matthew Burgess <matthew@…>, 15 years ago

Various text updates/typo fixes from Chris Staub. Fixes #2367.

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

  • Property mode set to 100644
File size: 8.0 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>
[c92413c]135 <seg>ftp, hostname, ping, ping6, rcp, rlogin, rsh, talk, telnet, and tftp</seg>
[4ae4324]136 </seglistitem>
137 </segmentedlist>
138
139 <variablelist>
140 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
141 <?dbfo list-presentation="list"?>
142 <?dbhtml list-presentation="table"?>
143
144 <varlistentry id="ftp">
145 <term><command>ftp</command></term>
146 <listitem>
147 <para>Is the file transfer protocol program</para>
148 <indexterm zone="ch-system-inetutils ftp">
149 <primary sortas="b-ftp">ftp</primary>
150 </indexterm>
151 </listitem>
152 </varlistentry>
153
[c92413c]154 <varlistentry id="hostname">
155 <term><command>hostname</command></term>
156 <listitem>
157 <para>Reports or sets the name of the host</para>
158 <indexterm zone="ch-system-inetutils hostname">
159 <primary sortas="b-hostname">hostname</primary>
160 </indexterm>
161 </listitem>
162 </varlistentry>
163
[4ae4324]164 <varlistentry id="ping">
165 <term><command>ping</command></term>
166 <listitem>
167 <para>Sends echo-request packets and reports how long the replies
168 take</para>
169 <indexterm zone="ch-system-inetutils ping">
170 <primary sortas="b-ping">ping</primary>
171 </indexterm>
172 </listitem>
173 </varlistentry>
174
[2791a8e]175 <varlistentry id="ping6">
176 <term><command>ping6</command></term>
177 <listitem>
178 <para>A version of <command>ping</command> for IPv6 networks</para>
179 <indexterm zone="ch-system-inetutils ping6">
180 <primary sortas="b-ping6">ping6</primary>
181 </indexterm>
182 </listitem>
183 </varlistentry>
184
[4ae4324]185 <varlistentry id="rcp">
186 <term><command>rcp</command></term>
187 <listitem>
188 <para>Performs remote file copy</para>
189 <indexterm zone="ch-system-inetutils rcp">
190 <primary sortas="b-rcp">rcp</primary>
191 </indexterm>
192 </listitem>
193 </varlistentry>
194
195 <varlistentry id="rlogin">
196 <term><command>rlogin</command></term>
197 <listitem>
198 <para>Performs remote login</para>
199 <indexterm zone="ch-system-inetutils rlogin">
200 <primary sortas="b-rlogin">rlogin</primary>
201 </indexterm>
202 </listitem>
203 </varlistentry>
204
205 <varlistentry id="rsh">
206 <term><command>rsh</command></term>
207 <listitem>
208 <para>Runs a remote shell</para>
209 <indexterm zone="ch-system-inetutils rsh">
210 <primary sortas="b-rsh">rsh</primary>
211 </indexterm>
212 </listitem>
213 </varlistentry>
214
215 <varlistentry id="talk">
216 <term><command>talk</command></term>
217 <listitem>
218 <para>Is used to chat with another user</para>
219 <indexterm zone="ch-system-inetutils talk">
220 <primary sortas="b-talk">talk</primary>
221 </indexterm>
222 </listitem>
223 </varlistentry>
224
225 <varlistentry id="telnet">
226 <term><command>telnet</command></term>
227 <listitem>
228 <para>An interface to the TELNET protocol</para>
229 <indexterm zone="ch-system-inetutils telnet">
230 <primary sortas="b-telnet">telnet</primary>
231 </indexterm>
232 </listitem>
233 </varlistentry>
234
235 <varlistentry id="tftp">
236 <term><command>tftp</command></term>
237 <listitem>
238 <para>A trivial file transfer program</para>
239 <indexterm zone="ch-system-inetutils tftp">
240 <primary sortas="b-tftp">tftp</primary>
241 </indexterm>
242 </listitem>
243 </varlistentry>
244
245 </variablelist>
246
247 </sect2>
[673b0d8]248
249</sect1>
Note: See TracBrowser for help on using the repository browser.