source: prologue/why.xml@ c34291a

7.5-systemd 7.6-systemd 7.7-systemd 7.8-systemd 7.9-systemd
Last change on this file since c34291a was 9baa148, checked in by Krejzi <krejzi@…>, 11 years ago

Added Acl for Systemd.

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

  • Property mode set to 100644
File size: 16.1 KB
RevLine 
[a26951e]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="pre-why">
9 <?dbhtml filename="package-choices.html"?>
10
11 <title>Rationale for Packages in the Book</title>
12
[ce5ebe1]13 <para>As stated earlier, the goal of LFS is to build a complete and usable
14 foundation-level system. This includes all packages needed to replicate
[c6d5b092]15 itself while providing a relatively minimal base from which to customize
[a26951e]16 a more complete system based on the choices of the user. This does not
17 mean that LFS is the smallest system possible. Several important packages
18 are included that are not strictly required. The lists below document the
19 rationale for each package in the book.</para>
20
21 <itemizedlist>
22
[9baa148]23 <listitem>
24 <para>Acl</para>
25
26 <para>This package contains programs to administer Access Control
27 Lists, which are used to define more fine-grained discretionary access
28 rights for files and directories. It is required by Systemd
29 and can be used by Coreutils.</para>
30 </listitem>
31
[fbee88e]32 <listitem>
33 <para>Attr</para>
34
35 <para>This package contains programs for working with extended
[0a56911]36 attributes on filesystem objects. It is required by the libcap
[fbee88e]37 library.</para>
38 </listitem>
39
[a26951e]40 <listitem>
41 <para>Autoconf</para>
42
43 <para>This package contains programs for producing shell scripts that
44 can automatically configure source code from a developer's
45 template. It is often needed to rebuild a package after updates
46 to the build procedures.</para>
47 </listitem>
48
49 <listitem>
50 <para>Automake</para>
51
52 <para>This package contains programs for generating Make files from
53 a template. It is often needed to rebuild a package after updates
54 to the build procedures.</para>
55 </listitem>
56
57 <listitem>
58 <para>Bash</para>
59
60 <para>This package satisfies an LSB core requirement to provide
61 a Bourne Shell interface to the system. It was chosen over
62 other shell packages because of its common usage and extensive
[1c72dda]63 capabilities beyond basic shell functions.</para>
[a26951e]64 </listitem>
65
66 <listitem>
67 <para>Binutils</para>
68
[ce5ebe1]69 <para>This package contains a linker, an assembler, and other
[1c72dda]70 tools for handling object files. The programs in this package are
71 needed to compile most of the packages in an LFS system and beyond.</para>
[a26951e]72 </listitem>
73
74 <listitem>
75 <para>Bison</para>
76
77 <para>This package contains the GNU version of yacc (Yet Another
[1c72dda]78 Compiler Compiler) needed to build several other LFS programs.</para>
[a26951e]79 </listitem>
80
81 <listitem>
82 <para>Bzip2</para>
83
[ce5ebe1]84 <para>This package contains programs for compressing and decompressing
[a26951e]85 files. It is required to decompress many LFS packages.</para>
86 </listitem>
87
[5870a98]88 <listitem>
89 <para>Check</para>
90
91 <para>This package contains a test harness for other programs.
92 It is only installed in the temporary toolchain.</para>
93 </listitem>
94
[a26951e]95 <listitem>
96 <para>Coreutils</para>
97
[ce5ebe1]98 <para>This package contains a number of essential programs for viewing
[1c72dda]99 and manipulating files and directories. These programs are needed for
100 command line file management, and are necessary for the installation
101 procedures of every package in LFS.</para>
[a26951e]102 </listitem>
103
[afe61bc]104 <listitem>
105 <para>D-Bus</para>
106
107 <para>D-Bus is a message bus system, a simple way for applications to
108 communicate with one another; it is required by Systemd.</para>
109 </listitem>
110
[a26951e]111 <listitem>
112 <para>DejaGNU</para>
113
114 <para>This package contains a framework for testing other programs.
115 It is only installed in the temporary toolchain.</para>
116 </listitem>
117
118 <listitem>
119 <para>Diffutils</para>
120
[ce5ebe1]121 <para>This package contains programs that show the differences
[1c72dda]122 between files or directories. These programs can be used to create
123 patches, and are also used in many packages' build procedures.</para>
[a26951e]124 </listitem>
125
[fbee88e]126 <listitem>
127 <para>E2fsprogs</para>
128
129 <para>This package contains the utilities for handling the ext2, ext3
130 and ext4 file systems. These are the most common and thoroughly
131 tested file systems that Linux supports.</para>
132 </listitem>
133
134 <listitem>
135 <para>Expat</para>
136
137 <para>This package contains a relatively small XML parsing library. It
138 is required by the XML::Parser Perl module.</para>
139 </listitem>
140
[a26951e]141 <listitem>
142 <para>Expect</para>
143
[ce5ebe1]144 <para>This package contains a program for carrying out scripted
[a26951e]145 dialogues with other interactive programs. It is commonly used
[ce5ebe1]146 for testing other packages. It is only installed in the temporary
[a26951e]147 toolchain.</para>
148 </listitem>
149
150 <listitem>
151 <para>File</para>
152
[ce5ebe1]153 <para>This package contains a utility for determining the type of a
[1c72dda]154 given file or files. A few packages need it to build.</para>
[a26951e]155 </listitem>
156
157 <listitem>
158 <para>Findutils</para>
159
[1c72dda]160 <para>This package contains programs to find files in a file system.
161 It is used in many packages' build scripts.</para>
[a26951e]162 </listitem>
163
164 <listitem>
165 <para>Flex</para>
166
[ce5ebe1]167 <para>This package contains a utility for generating programs that
168 recognize patterns in text. It is the GNU version of the lex
169 (lexical analyzer) program. It is required to build several
[1c72dda]170 LFS packages.</para>
[a26951e]171 </listitem>
172
173 <listitem>
174 <para>Gawk</para>
175
176 <para>This package contains programs for manipulating text files.
[1c72dda]177 It is the GNU version of awk (Aho-Weinberg-Kernighan). It is used in
178 many other packages' build scripts.</para>
[a26951e]179 </listitem>
180
181 <listitem>
182 <para>Gcc</para>
183
[ce5ebe1]184 <para>This package is the Gnu Compiler Collection. It contains the
185 C and C++ compilers as well as several others not built by LFS.
[a26951e]186 </para>
187 </listitem>
188
189 <listitem>
190 <para>GDBM</para>
191
192 <para>This package contains the GNU Database Manager library. It
[1c72dda]193 is used by one other LFS package, Man-DB.</para>
[a26951e]194 </listitem>
195
196 <listitem>
197 <para>Gettext</para>
198
[ce5ebe1]199 <para>This package contains utilities and libraries for
[1c72dda]200 internationalization and localization of numerous packages.</para>
[a26951e]201 </listitem>
202
203 <listitem>
204 <para>Glibc</para>
205
206 <para>This package contains the main C library. Linux programs would
[1c72dda]207 not run without it.</para>
[a26951e]208 </listitem>
209
210 <listitem>
211 <para>GMP</para>
212
[9ec9c03]213 <para>This package contains math libraries that provide useful functions
214 for arbitrary precision arithmetic. It is required to build Gcc.</para>
[a26951e]215 </listitem>
216
[fbee88e]217 <listitem>
218 <para>Gperf</para>
219
220 <para>This package generates a perfect hash from a key set; it is
221 required by Systemd.</para>
222 </listitem>
223
[a26951e]224 <listitem>
225 <para>Grep</para>
226
[1c72dda]227 <para>This package contains programs for searching through files. These
228 programs are used by most packages' build scripts.</para>
[a26951e]229 </listitem>
230
231 <listitem>
232 <para>Groff</para>
233
234 <para>This package contains programs for processing and formatting text.
[1c72dda]235 One important function of these programs is to format man pages.</para>
[a26951e]236 </listitem>
237
238 <listitem>
239 <para>GRUB</para>
240
[ce5ebe1]241 <para>This package is the Grand Unified Boot Loader. It is one
[a26951e]242 of several boot loaders available, but is the most flexible.
243 </para>
244 </listitem>
245
246 <listitem>
247 <para>Gzip</para>
248
[ce5ebe1]249 <para>This package contains programs for compressing and
[1c72dda]250 decompressing files. It is needed to decompress many packages in LFS
251 and beyond.</para>
[a26951e]252 </listitem>
253
254 <listitem>
255 <para>Iana-etc</para>
256
257 <para>This package provides data for network services and protocols.
[1c72dda]258 It is needed to enable proper networking capabilities.</para>
[a26951e]259 </listitem>
260
261 <listitem>
262 <para>Inetutils</para>
263
[ce5ebe1]264 <para>This package contains programs for basic network
[1c72dda]265 administration.</para>
[a26951e]266 </listitem>
267
[fbee88e]268 <listitem>
269 <para>Intltool</para>
270
271 <para>This package contains internationalization tools; it is required
272 by Systemd.</para>
273 </listitem>
274
[a26951e]275 <listitem>
276 <para>IProute2</para>
277
278 <para>This package contains programs for basic and advanced IPv4 and
279 IPv6 networking. It was chosen over the other common network
280 tools package (net-tools) for its IPv6 capabilities. </para>
281 </listitem>
282
283 <listitem>
284 <para>Kbd</para>
285
[1c72dda]286 <para>This package contains key-table files, keyboard utilities
287 for non-US keyboards, and a number of console fonts.</para>
[a26951e]288 </listitem>
289
[46b7d91]290 <listitem>
291 <para>Kmod</para>
292
293 <para>This package contains programs needed to administer Linux
294 kernel modules.</para>
295 </listitem>
296
[a26951e]297 <listitem>
298 <para>Less</para>
299
300 <para>This package contains a very nice text file viewer that
[1c72dda]301 allows scrolling up or down when viewing a file. It is also used by
302 Man-DB for viewing manpages.</para>
[a26951e]303 </listitem>
304
[fbee88e]305 <listitem>
[c97d81d]306 <para>Libcap</para>
[fbee88e]307
308 <para>This package contains functions that enable root privileges to be
309 partitioned into a set of distinct privileges. It is required by
310 Systemd.</para>
311 </listitem>
312
313 <listitem>
314 <para>Libpipeline</para>
315
316 <para>The Libpipeline package contains a library for manipulating
317 pipelines of subprocesses in a flexible and convenient way. It is
318 required by the Man-DB package.</para>
319 </listitem>
320
[a26951e]321 <listitem>
322 <para>Libtool</para>
323
[ce5ebe1]324 <para>This package contains the GNU generic library support
325 script. It wraps the complexity of using shared libraries in a
[a26951e]326 consistent, portable interface. It is needed by the test
[1c72dda]327 suites in other LFS packages.</para>
[a26951e]328 </listitem>
329
330 <listitem>
331 <para>Linux Kernel</para>
332
333 <para>This package is the Operating System. It is the Linux in
[1c72dda]334 the GNU/Linux environment.</para>
[a26951e]335 </listitem>
336
337 <listitem>
338 <para>M4</para>
339
340 <para>This package contains a general text macro processor useful
[1c72dda]341 as a build tool for other programs.</para>
[a26951e]342 </listitem>
343
344 <listitem>
345 <para>Make</para>
346
347 <para>This package contains a program for directing the building
[1c72dda]348 of packages. It is required by almost every package in LFS.</para>
[a26951e]349 </listitem>
350
351 <listitem>
352 <para>Man-DB</para>
353
354 <para>This package contains programs for finding and viewing man pages.
355 It was chosen instead of the <application>man</application> package
356 due to superior internationalization capabilities. It supplies
[1c72dda]357 the man program.</para>
[a26951e]358 </listitem>
359
360 <listitem>
361 <para>Man-pages</para>
362
363 <para>This package contains the actual contents of the basic
[1c72dda]364 Linux man pages.</para>
[a26951e]365 </listitem>
366
[1c72dda]367 <listitem>
368 <para>MPC</para>
369
370 <para>This package contains functions for the arithmetic of complex
371 numbers. It is required by Gcc.</para>
372 </listitem>
373
[a26951e]374 <listitem>
375 <para>MPFR</para>
376
[ce5ebe1]377 <para>This package contains functions for multiple precision
[1c72dda]378 arithmetic. It is required by Gcc.</para>
[a26951e]379 </listitem>
380
381 <listitem>
382 <para>Ncurses</para>
383
[ce5ebe1]384 <para>This package contains libraries for terminal-independent
385 handling of character screens. It is often used to provide
[1c72dda]386 cursor control for a menuing system. It is needed by a number of
387 packages in LFS.</para>
[a26951e]388 </listitem>
389
390 <listitem>
391 <para>Patch</para>
392
[12c82b50]393 <para>This package contains a program for modifying or creating files by
[ce5ebe1]394 applying a <emphasis>patch</emphasis> file typically created
[a26951e]395 by the <application>diff</application> program. It is needed by
[1c72dda]396 the build procedure for several LFS packages.</para>
[a26951e]397 </listitem>
[5b62b8d]398
[a26951e]399 <listitem>
400 <para>Perl</para>
401
402 <para>This package is an interpreter for the runtime language
[0ebe029b]403 PERL. It is needed for the installation and test suites of several LFS
[1c72dda]404 packages.</para>
[a26951e]405 </listitem>
406
[450e682e]407 <listitem>
408 <para>Pkg-config</para>
409
[ce5ebe1]410 <para>This package provides a program to return meta-data about an
[450e682e]411 installed library or package.</para>
412 </listitem>
413
414 <listitem>
[fbee88e]415 <para>Procps-NG</para>
[a26951e]416
[1c72dda]417 <para>This package contains programs for monitoring processes. These
418 programs are useful for system administration, and are also used by
419 the LFS Bootscripts.</para>
[a26951e]420 </listitem>
421
422 <listitem>
423 <para>Psmisc</para>
424
[ce5ebe1]425 <para>This package contains programs for displaying information
[1c72dda]426 about running processes. These programs are useful for system
427 administration.</para>
[a26951e]428 </listitem>
429
430 <listitem>
431 <para>Readline</para>
432
[ce5ebe1]433 <para>This package is a set of libraries that offers command-line
[1c72dda]434 editing and history capabilities. It is used by Bash.</para>
[a26951e]435 </listitem>
436
437 <listitem>
438 <para>Sed</para>
439
[ce5ebe1]440 <para>This package allows editing of text without opening it in a
441 text editor. It is also needed by most LFS packages' configure
[1c72dda]442 scripts.</para>
[a26951e]443 </listitem>
444
445 <listitem>
446 <para>Shadow</para>
447
[ce5ebe1]448 <para>This package contains programs for handling passwords
[a26951e]449 in a secure way.</para>
450 </listitem>
451
452 <listitem>
[0a56911]453 <para>Systemd</para>
[a26951e]454
[0a56911]455 <para>This package contains programs for controlling the startup,
456 running, and shutdown of the system.</para>
[a26951e]457 </listitem>
458
459 <listitem>
[0a56911]460 <para>Sysvinit</para>
[a26951e]461
[0a56911]462 <para>This package provides misc. utils needed by some packages.</para>
[a26951e]463 </listitem>
464
465 <listitem>
466 <para>Tar</para>
467
468 <para>This package provides archiving and extraction capabilities
[1c72dda]469 of virtually all packages used in LFS.</para>
[a26951e]470 </listitem>
471
472 <listitem>
473 <para>Tcl</para>
474
475 <para>This package contains the Tool Command Language used
[ce5ebe1]476 in many test suites in LFS packages. It is only installed in
[1c72dda]477 the temporary toolchain.</para>
[a26951e]478 </listitem>
479
480 <listitem>
481 <para>Texinfo</para>
482
[ce5ebe1]483 <para>This package contains programs for reading, writing, and
484 converting info pages. It is used in the installation
[1c72dda]485 procedures of many LFS packages.</para>
[a26951e]486 </listitem>
487
488 <listitem>
[e1428f3]489 <para>Util-linux</para>
[a26951e]490
[ce5ebe1]491 <para>This package contains miscellaneous utility programs.
492 Among them are utilities for handling file systems, consoles,
[1c72dda]493 partitions, and messages.</para>
[a26951e]494 </listitem>
495
496 <listitem>
497 <para>Vim</para>
498
[c6d5b092]499 <para>This package contains an editor. It was chosen because of its
500 compatibility with the classic vi editor and its huge number of powerful
[a26951e]501 capabilities. An editor is a very personal choice for
[1c72dda]502 many users and any other editor could be substituted if desired.</para>
[a26951e]503 </listitem>
504
[fbee88e]505 <listitem>
506 <para>XML::Parser</para>
507
508 <para>This package contains an XML Parsing library for Perl. It is
509 required by the Intltool package.</para>
510 </listitem>
511
[7002213]512 <listitem>
513 <para>XZ Utils</para>
514
[ce5ebe1]515 <para>This package contains programs for compressing and decompressing
[7002213]516 files. It provides the highest compression generally available
[5a58876]517 and is useful for decompressing packages XZ or LZMA format.</para>
[7002213]518 </listitem>
519
[a26951e]520 <listitem>
521 <para>Zlib</para>
522
[ce5ebe1]523 <para>This package contains compression and decompression routines
[1c72dda]524 used by some programs.</para>
[a26951e]525 </listitem>
526
527 </itemizedlist>
528
529</sect1>
530
Note: See TracBrowser for help on using the repository browser.