source: prologue/why.xml@ 6f34f43

7.6-systemd 7.7-systemd 7.8-systemd 7.9-systemd
Last change on this file since 6f34f43 was a3af16f, checked in by Matthew Burgess <matthew@…>, 11 years ago

Merge latest trunk updates to systemd branch

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

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