source: chapter06/inetutils.xml@ dd06b53

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.3 7.4 7.5 7.6 7.7 7.8 7.9 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 dd06b53 was dd06b53, checked in by Bruce Dubbs <bdubbs@…>, 11 years ago

Update to texinfo-5.0 and linux-3.7.9.

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

  • Property mode set to 100644
File size: 9.1 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</userinput></screen>
123<!-- The html file generation is broken as of texinfo-5.0
124make -C doc html
125make -C doc install-html docdir=/usr/share/doc/inetutils-&inetutils-version;</userinput></screen>
126-->
127 <para>Move some programs so they are available if <filename
128 class='directory'>/usr</filename> is not accessable:</para>
129
130<screen><userinput remap="install">mv -v /usr/bin/{hostname,ping,ping6,traceroute} /bin</userinput></screen>
131
132 </sect2>
133
134 <sect2 id="contents-inetutils" role="content">
135 <title>Contents of Inetutils</title>
136
137 <segmentedlist>
138 <segtitle>Installed programs</segtitle>
139
140 <seglistitem>
141 <seg>ftp, hostname, ping, ping6, rcp, rexec, rlogin, rsh, talk, telnet,
142 tftp, and traceroute</seg>
143 </seglistitem>
144 </segmentedlist>
145
146 <variablelist>
147 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
148 <?dbfo list-presentation="list"?>
149 <?dbhtml list-presentation="table"?>
150
151 <varlistentry id="ftp">
152 <term><command>ftp</command></term>
153 <listitem>
154 <para>Is the file transfer protocol program</para>
155 <indexterm zone="ch-system-inetutils ftp">
156 <primary sortas="b-ftp">ftp</primary>
157 </indexterm>
158 </listitem>
159 </varlistentry>
160
161 <varlistentry id="hostname">
162 <term><command>hostname</command></term>
163 <listitem>
164 <para>Reports or sets the name of the host</para>
165 <indexterm zone="ch-system-inetutils hostname">
166 <primary sortas="b-hostname">hostname</primary>
167 </indexterm>
168 </listitem>
169 </varlistentry>
170
171 <varlistentry id="ping">
172 <term><command>ping</command></term>
173 <listitem>
174 <para>Sends echo-request packets and reports how long the replies
175 take</para>
176 <indexterm zone="ch-system-inetutils ping">
177 <primary sortas="b-ping">ping</primary>
178 </indexterm>
179 </listitem>
180 </varlistentry>
181
182 <varlistentry id="ping6">
183 <term><command>ping6</command></term>
184 <listitem>
185 <para>A version of <command>ping</command> for IPv6 networks</para>
186 <indexterm zone="ch-system-inetutils ping6">
187 <primary sortas="b-ping6">ping6</primary>
188 </indexterm>
189 </listitem>
190 </varlistentry>
191
192 <varlistentry id="rcp">
193 <term><command>rcp</command></term>
194 <listitem>
195 <para>Performs remote file copy</para>
196 <indexterm zone="ch-system-inetutils rcp">
197 <primary sortas="b-rcp">rcp</primary>
198 </indexterm>
199 </listitem>
200 </varlistentry>
201
202 <varlistentry id="rexec">
203 <term><command>rexec</command></term>
204 <listitem>
205 <para>executes commands on a remote host</para>
206 <indexterm zone="ch-system-inetutils rexec">
207 <primary sortas="b-rexec">rexec</primary>
208 </indexterm>
209 </listitem>
210 </varlistentry>
211
212 <varlistentry id="rlogin">
213 <term><command>rlogin</command></term>
214 <listitem>
215 <para>Performs remote login</para>
216 <indexterm zone="ch-system-inetutils rlogin">
217 <primary sortas="b-rlogin">rlogin</primary>
218 </indexterm>
219 </listitem>
220 </varlistentry>
221
222 <varlistentry id="rsh">
223 <term><command>rsh</command></term>
224 <listitem>
225 <para>Runs a remote shell</para>
226 <indexterm zone="ch-system-inetutils rsh">
227 <primary sortas="b-rsh">rsh</primary>
228 </indexterm>
229 </listitem>
230 </varlistentry>
231
232 <varlistentry id="talk">
233 <term><command>talk</command></term>
234 <listitem>
235 <para>Is used to chat with another user</para>
236 <indexterm zone="ch-system-inetutils talk">
237 <primary sortas="b-talk">talk</primary>
238 </indexterm>
239 </listitem>
240 </varlistentry>
241
242 <varlistentry id="telnet">
243 <term><command>telnet</command></term>
244 <listitem>
245 <para>An interface to the TELNET protocol</para>
246 <indexterm zone="ch-system-inetutils telnet">
247 <primary sortas="b-telnet">telnet</primary>
248 </indexterm>
249 </listitem>
250 </varlistentry>
251
252 <varlistentry id="tftp">
253 <term><command>tftp</command></term>
254 <listitem>
255 <para>A trivial file transfer program</para>
256 <indexterm zone="ch-system-inetutils tftp">
257 <primary sortas="b-tftp">tftp</primary>
258 </indexterm>
259 </listitem>
260 </varlistentry>
261
262 <varlistentry id="traceroute">
263 <term><command>traceroute</command></term>
264 <listitem>
265 <para>Traces the route your packets take from the host you are
266 working on to another host on a network, showing all the intermediate
267 hops (gateways) along the way</para>
268 <indexterm zone="ch-system-inetutils traceroute">
269 <primary sortas="b-traceroute">traceroute</primary>
270 </indexterm>
271 </listitem>
272 </varlistentry>
273
274 </variablelist>
275
276 </sect2>
277
278</sect1>
Note: See TracBrowser for help on using the repository browser.