source: chapter06/inetutils.xml@ 9058aa1

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.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 9058aa1 was 9058aa1, checked in by Manuel Canales Esparcia <manuel@…>, 17 years ago

Updated Ncurses contents list and fixes some typos.
Thanks to Chris Staub for the patch.

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

  • Property mode set to 100644
File size: 7.6 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>All programs that come with Inetutils will not be installed.
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>
47
48<screen><userinput>patch -Np1 -i ../&inetutils-man_pages-patch;</userinput></screen>
49
50<para>Prepare Inetutils for compilation:</para>
51
52<screen><userinput>./configure --prefix=/usr --libexecdir=/usr/sbin \
53 --sysconfdir=/etc --localstatedir=/var \
54 --disable-ifconfig --disable-logger --disable-syslogd \
55 --disable-whois --disable-servers</userinput></screen>
56
57 <variablelist>
58 <title>The meaning of the configure options:</title>
59
60 <varlistentry>
61 <term><parameter>--disable-ifconfig</parameter></term>
62 <listitem>
63 <para>This option prevents Inetutils from installing the
64 <command>ifconfig</command> program, which can be used to configure network
65 interfaces. LFS uses <command>ip</command> from IPRoute2 to perform
66 this task.</para>
67 </listitem>
68 </varlistentry>
69
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>
112
113<screen><userinput>make</userinput></screen>
114
115 <para>This package does not come with a test suite.</para>
116
117 <para>Install the package:</para>
118
119<screen><userinput>make install</userinput></screen>
120
121 <para>Move the <command>ping</command> program to its FHS-compliant
122 place:</para>
123
124<screen><userinput>mv -v /usr/bin/ping /bin</userinput></screen>
125
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>
135 <seg>ftp, ping, ping6, rcp, rlogin, rsh, talk, telnet, and tftp</seg>
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
154 <varlistentry id="ping">
155 <term><command>ping</command></term>
156 <listitem>
157 <para>Sends echo-request packets and reports how long the replies
158 take</para>
159 <indexterm zone="ch-system-inetutils ping">
160 <primary sortas="b-ping">ping</primary>
161 </indexterm>
162 </listitem>
163 </varlistentry>
164
165 <varlistentry id="ping6">
166 <term><command>ping6</command></term>
167 <listitem>
168 <para>A version of <command>ping</command> for IPv6 networks</para>
169 <indexterm zone="ch-system-inetutils ping6">
170 <primary sortas="b-ping6">ping6</primary>
171 </indexterm>
172 </listitem>
173 </varlistentry>
174
175 <varlistentry id="rcp">
176 <term><command>rcp</command></term>
177 <listitem>
178 <para>Performs remote file copy</para>
179 <indexterm zone="ch-system-inetutils rcp">
180 <primary sortas="b-rcp">rcp</primary>
181 </indexterm>
182 </listitem>
183 </varlistentry>
184
185 <varlistentry id="rlogin">
186 <term><command>rlogin</command></term>
187 <listitem>
188 <para>Performs remote login</para>
189 <indexterm zone="ch-system-inetutils rlogin">
190 <primary sortas="b-rlogin">rlogin</primary>
191 </indexterm>
192 </listitem>
193 </varlistentry>
194
195 <varlistentry id="rsh">
196 <term><command>rsh</command></term>
197 <listitem>
198 <para>Runs a remote shell</para>
199 <indexterm zone="ch-system-inetutils rsh">
200 <primary sortas="b-rsh">rsh</primary>
201 </indexterm>
202 </listitem>
203 </varlistentry>
204
205 <varlistentry id="talk">
206 <term><command>talk</command></term>
207 <listitem>
208 <para>Is used to chat with another user</para>
209 <indexterm zone="ch-system-inetutils talk">
210 <primary sortas="b-talk">talk</primary>
211 </indexterm>
212 </listitem>
213 </varlistentry>
214
215 <varlistentry id="telnet">
216 <term><command>telnet</command></term>
217 <listitem>
218 <para>An interface to the TELNET protocol</para>
219 <indexterm zone="ch-system-inetutils telnet">
220 <primary sortas="b-telnet">telnet</primary>
221 </indexterm>
222 </listitem>
223 </varlistentry>
224
225 <varlistentry id="tftp">
226 <term><command>tftp</command></term>
227 <listitem>
228 <para>A trivial file transfer program</para>
229 <indexterm zone="ch-system-inetutils tftp">
230 <primary sortas="b-tftp">tftp</primary>
231 </indexterm>
232 </listitem>
233 </varlistentry>
234
235 </variablelist>
236
237 </sect2>
238
239</sect1>
Note: See TracBrowser for help on using the repository browser.