source: chapter06/inetutils.xml@ a001133

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.0 6.1 6.1.1 6.3 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 a001133 was a001133, checked in by Manuel Canales Esparcia <manuel@…>, 20 years ago

HEAD: Retaged the introductori packages sections in chapter0{6,7,8}

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

  • Property mode set to 100644
File size: 5.0 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN" "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
3 <!ENTITY % general-entities SYSTEM "../general.ent">
4 %general-entities;
5]>
6<sect1 id="ch-system-inetutils" xreflabel="Inetutils" role="wrap">
7<title>Inetutils-&inetutils-version;</title>
8<?dbhtml filename="inetutils.html"?>
9
10<indexterm zone="ch-system-inetutils"><primary sortas="a-Inetutils">Inetutils</primary></indexterm>
11
12<sect2 role="package"><title/>
13<para>The Inetutils package contains programs for basic networking.</para>
14
15<segmentedlist>
16<segtitle>&buildtime;</segtitle>
17<segtitle>&diskspace;</segtitle>
18<seglistitem><seg>0.2 SBU</seg><seg>11 MB</seg></seglistitem>
19</segmentedlist>
20
21<segmentedlist>
22<segtitle>Inetutils installation depends on</segtitle>
23<seglistitem><seg>Bash, Binutils, Coreutils,
24Diffutils, GCC, Glibc, Grep, Make, Ncurses, Sed</seg></seglistitem>
25</segmentedlist>
26</sect2>
27
28<sect2 role="installation">
29<title>Installation of Inetutils</title>
30
31<para>Inetutils has issues with the Linux 2.6 kernel series - fix these isues
32by applying the following patch:</para>
33
34<screen><userinput>patch -Np1 -i ../inetutils-&inetutils-version;-kernel-headers-1.patch</userinput></screen>
35
36<para>We are not going to install all the programs that come with Inetutils.
37However, the Inetutils build system will insist on installing all the man
38pages anyway. The following patch will correct this situation:</para>
39
40<screen><userinput>patch -Np1 -i ../inetutils-&inetutils-version;-no-server-man-pages-1.patch</userinput></screen>
41
42<para>Now prepare Inetutils for compilation:</para>
43
44<screen><userinput>./configure --prefix=/usr --libexecdir=/usr/sbin \
45 --sysconfdir=/etc --localstatedir=/var \
46 --disable-logger --disable-syslogd \
47 --disable-whois --disable-servers</userinput></screen>
48
49<para>The meaning of the configure options:</para>
50
51<itemizedlist>
52<listitem><para><userinput>--disable-logger</userinput>: This option
53prevents Inetutils from installing the logger program, which is used by
54scripts to pass messages to the System Log Daemon. We do not install it
55because Util-linux installs a better version later.</para></listitem>
56
57<listitem><para><userinput>--disable-syslogd</userinput>: This option
58prevents Inetutils from installing the System Log Daemon, which is
59installed with the Sysklogd package.</para></listitem>
60
61<listitem><para><userinput>--disable-whois</userinput>: This option disables
62the building of the Inetutils whois client, which is woefully out of date.
63Instructions for a better whois client are in the BLFS book.</para></listitem>
64
65<listitem><para><userinput>--disable-servers</userinput>: This disables the
66installation of the various network servers included as part of the Inetutils
67package. These servers are deemed not appropriate in a basic LFS system. Some
68are insecure by nature and are only considered safe on trusted networks. More
69information can be found at
70<ulink url="&blfs-root;view/stable/basicnet/inetutils.html"/>. Note that better
71replacements are available for many of these servers.</para></listitem>
72</itemizedlist>
73
74<para>Compile the package:</para>
75
76<screen><userinput>make</userinput></screen>
77
78<para>Install it:</para>
79
80<screen><userinput>make install</userinput></screen>
81
82<para>Move the <command>ping</command> program to its FHS-compliant
83place:</para>
84
85<screen><userinput>mv /usr/bin/ping /bin</userinput></screen>
86
87</sect2>
88
89
90<sect2 id="contents-inetutils"><title>Contents of Inetutils</title>
91
92<para><emphasis>Installed programs</emphasis>: ftp, ping, rcp, rlogin, rsh,
93talk, telnet and tftp</para>
94
95</sect2>
96
97<sect2><title>Short descriptions</title>
98
99<indexterm zone="ch-system-inetutils ftp"><primary sortas="b-ftp">ftp</primary></indexterm>
100<para id="ftp"><command>ftp</command> is the ARPANET file transfer program.</para>
101
102<indexterm zone="ch-system-inetutils ping"><primary sortas="b-ping">ping</primary></indexterm>
103<para id="ping"><command>ping</command> sends echo-request packets and reports how
104long the replies take.</para>
105
106<indexterm zone="ch-system-inetutils rcp"><primary sortas="b-rcp">rcp</primary></indexterm>
107<para id="rcp"><command>rcp</command> does remote file copy.</para>
108
109<indexterm zone="ch-system-inetutils rlogin"><primary sortas="b-rlogin">rlogin</primary></indexterm>
110<para id="rlogin"><command>rlogin</command> does remote login.</para>
111
112<indexterm zone="ch-system-inetutils rsh"><primary sortas="b-rsh">rsh</primary></indexterm>
113<para id="rsh"><command>rsh</command> runs a remote shell.</para>
114
115<indexterm zone="ch-system-inetutils talk"><primary sortas="b-talk">talk</primary></indexterm>
116<para id="talk"><command>talk</command> is used to chat up another user.</para>
117
118<indexterm zone="ch-system-inetutils telnet"><primary sortas="b-telnet">telnet</primary></indexterm>
119<para id="telnet"><command>telnet</command> is an interface to the TELNET protocol.</para>
120
121<indexterm zone="ch-system-inetutils tftp"><primary sortas="b-tftp">tftp</primary></indexterm>
122<para id="tftp"><command>tftp</command> is a trivial file transfer program.</para>
123
124</sect2>
125
126
127
128</sect1>
Note: See TracBrowser for help on using the repository browser.