source: chapter06/inetutils.xml@ ab4b285

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

Remove --sysconfdir parameter from Inetutils'. Fixes #2313.

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

  • Property mode set to 100644
File size: 8.0 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 remap="pre">patch -Np1 -i ../&inetutils-man_pages-patch;</userinput></screen>
49
50 <para>Inetutils has a minor issue with GCC-&gcc-version;. Fix it by
51 issuing the following command:</para>
52
53<screen><userinput remap="pre">sed -i 's@&lt;sys/types.h&gt;@&lt;sys/types.h&gt;\n#include &lt;stdlib.h&gt;@' \
54 libicmp/icmp_timestamp.c</userinput></screen>
55
56<para>Prepare Inetutils for compilation:</para>
57
58<screen><userinput remap="configure">./configure --prefix=/usr --libexecdir=/usr/sbin \
59 --localstatedir=/var --disable-ifconfig \
60 --disable-logger --disable-syslogd --disable-whois \
61 --disable-servers</userinput></screen>
62
63 <variablelist>
64 <title>The meaning of the configure options:</title>
65
66 <varlistentry>
67 <term><parameter>--disable-ifconfig</parameter></term>
68 <listitem>
69 <para>This option prevents Inetutils from installing the
70 <command>ifconfig</command> program, which can be used to configure network
71 interfaces. LFS uses <command>ip</command> from IPRoute2 to perform
72 this task.</para>
73 </listitem>
74 </varlistentry>
75
76 <varlistentry>
77 <term><parameter>--disable-logger</parameter></term>
78 <listitem>
79 <para>This option prevents Inetutils from installing the
80 <command>logger</command> program, which is used by scripts to
81 pass messages to the System Log Daemon. Do not install it because
82 Util-linux installs a better version later.</para>
83 </listitem>
84 </varlistentry>
85
86 <varlistentry>
87 <term><parameter>--disable-syslogd</parameter></term>
88 <listitem>
89 <para>This option prevents Inetutils from installing the System Log
90 Daemon, which is installed with the Sysklogd package.</para>
91 </listitem>
92 </varlistentry>
93
94 <varlistentry>
95 <term><parameter>--disable-whois</parameter></term>
96 <listitem>
97 <para>This option disables the building of the Inetutils
98 <command>whois</command> client, which is out of date. Instructions for
99 a better <command>whois</command> client are in the BLFS book.</para>
100 </listitem>
101 </varlistentry>
102
103 <varlistentry>
104 <term><parameter>--disable-servers</parameter></term>
105 <listitem>
106 <para>This disables the installation of the various network servers
107 included as part of the Inetutils package. These servers are deemed not
108 appropriate in a basic LFS system. Some are insecure by nature and are
109 only considered safe on trusted networks. More information can be found
110 at <ulink url="&blfs-root;view/svn/basicnet/inetutils.html"/>. Note that
111 better replacements are available for many of these servers.</para>
112 </listitem>
113 </varlistentry>
114
115 </variablelist>
116
117 <para>Compile the package:</para>
118
119<screen><userinput remap="make">make</userinput></screen>
120
121 <para>This package does not come with a test suite.</para>
122
123 <para>Install the package:</para>
124
125<screen><userinput remap="install">make install</userinput></screen>
126
127 <para>Move the <command>ping</command> program to its FHS-compliant
128 place:</para>
129
130<screen><userinput remap="install">mv -v /usr/bin/ping /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, ping, ping6, rcp, rlogin, rsh, talk, telnet, and tftp</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="ping">
161 <term><command>ping</command></term>
162 <listitem>
163 <para>Sends echo-request packets and reports how long the replies
164 take</para>
165 <indexterm zone="ch-system-inetutils ping">
166 <primary sortas="b-ping">ping</primary>
167 </indexterm>
168 </listitem>
169 </varlistentry>
170
171 <varlistentry id="ping6">
172 <term><command>ping6</command></term>
173 <listitem>
174 <para>A version of <command>ping</command> for IPv6 networks</para>
175 <indexterm zone="ch-system-inetutils ping6">
176 <primary sortas="b-ping6">ping6</primary>
177 </indexterm>
178 </listitem>
179 </varlistentry>
180
181 <varlistentry id="rcp">
182 <term><command>rcp</command></term>
183 <listitem>
184 <para>Performs remote file copy</para>
185 <indexterm zone="ch-system-inetutils rcp">
186 <primary sortas="b-rcp">rcp</primary>
187 </indexterm>
188 </listitem>
189 </varlistentry>
190
191 <varlistentry id="rlogin">
192 <term><command>rlogin</command></term>
193 <listitem>
194 <para>Performs remote login</para>
195 <indexterm zone="ch-system-inetutils rlogin">
196 <primary sortas="b-rlogin">rlogin</primary>
197 </indexterm>
198 </listitem>
199 </varlistentry>
200
201 <varlistentry id="rsh">
202 <term><command>rsh</command></term>
203 <listitem>
204 <para>Runs a remote shell</para>
205 <indexterm zone="ch-system-inetutils rsh">
206 <primary sortas="b-rsh">rsh</primary>
207 </indexterm>
208 </listitem>
209 </varlistentry>
210
211 <varlistentry id="talk">
212 <term><command>talk</command></term>
213 <listitem>
214 <para>Is used to chat with another user</para>
215 <indexterm zone="ch-system-inetutils talk">
216 <primary sortas="b-talk">talk</primary>
217 </indexterm>
218 </listitem>
219 </varlistentry>
220
221 <varlistentry id="telnet">
222 <term><command>telnet</command></term>
223 <listitem>
224 <para>An interface to the TELNET protocol</para>
225 <indexterm zone="ch-system-inetutils telnet">
226 <primary sortas="b-telnet">telnet</primary>
227 </indexterm>
228 </listitem>
229 </varlistentry>
230
231 <varlistentry id="tftp">
232 <term><command>tftp</command></term>
233 <listitem>
234 <para>A trivial file transfer program</para>
235 <indexterm zone="ch-system-inetutils tftp">
236 <primary sortas="b-tftp">tftp</primary>
237 </indexterm>
238 </listitem>
239 </varlistentry>
240
241 </variablelist>
242
243 </sect2>
244
245</sect1>
Note: See TracBrowser for help on using the repository browser.