source: prologue/why.xml@ a3af16f

7.5-systemd 7.6-systemd 7.7-systemd 7.8-systemd 7.9-systemd
Last change on this file since a3af16f 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
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="pre-why">
9 <?dbhtml filename="package-choices.html"?>
10
11 <title>Rationale for Packages in the Book</title>
12
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
15 itself while providing a relatively minimal base from which to customize
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
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
32 <listitem>
33 <para>Attr</para>
34
35 <para>This package contains programs for working with extended
36 attributes on filesystem objects. It is required by the libcap
37 library.</para>
38 </listitem>
39
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
63 capabilities beyond basic shell functions.</para>
64 </listitem>
65
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
73 <listitem>
74 <para>Binutils</para>
75
76 <para>This package contains a linker, an assembler, and other
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>
79 </listitem>
80
81 <listitem>
82 <para>Bison</para>
83
84 <para>This package contains the GNU version of yacc (Yet Another
85 Compiler Compiler) needed to build several other LFS programs.</para>
86 </listitem>
87
88 <listitem>
89 <para>Bzip2</para>
90
91 <para>This package contains programs for compressing and decompressing
92 files. It is required to decompress many LFS packages.</para>
93 </listitem>
94
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
102 <listitem>
103 <para>Coreutils</para>
104
105 <para>This package contains a number of essential programs for viewing
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>
109 </listitem>
110
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
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
128 <para>This package contains programs that show the differences
129 between files or directories. These programs can be used to create
130 patches, and are also used in many packages' build procedures.</para>
131 </listitem>
132
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
148 <listitem>
149 <para>Expect</para>
150
151 <para>This package contains a program for carrying out scripted
152 dialogues with other interactive programs. It is commonly used
153 for testing other packages. It is only installed in the temporary
154 toolchain.</para>
155 </listitem>
156
157 <listitem>
158 <para>File</para>
159
160 <para>This package contains a utility for determining the type of a
161 given file or files. A few packages need it to build.</para>
162 </listitem>
163
164 <listitem>
165 <para>Findutils</para>
166
167 <para>This package contains programs to find files in a file system.
168 It is used in many packages' build scripts.</para>
169 </listitem>
170
171 <listitem>
172 <para>Flex</para>
173
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
177 LFS packages.</para>
178 </listitem>
179
180 <listitem>
181 <para>Gawk</para>
182
183 <para>This package contains programs for manipulating text files.
184 It is the GNU version of awk (Aho-Weinberg-Kernighan). It is used in
185 many other packages' build scripts.</para>
186 </listitem>
187
188 <listitem>
189 <para>Gcc</para>
190
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.
193 </para>
194 </listitem>
195
196 <listitem>
197 <para>GDBM</para>
198
199 <para>This package contains the GNU Database Manager library. It
200 is used by one other LFS package, Man-DB.</para>
201 </listitem>
202
203 <listitem>
204 <para>Gettext</para>
205
206 <para>This package contains utilities and libraries for
207 internationalization and localization of numerous packages.</para>
208 </listitem>
209
210 <listitem>
211 <para>Glibc</para>
212
213 <para>This package contains the main C library. Linux programs would
214 not run without it.</para>
215 </listitem>
216
217 <listitem>
218 <para>GMP</para>
219
220 <para>This package contains math libraries that provide useful functions
221 for arbitrary precision arithmetic. It is required to build Gcc.</para>
222 </listitem>
223
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
231 <listitem>
232 <para>Grep</para>
233
234 <para>This package contains programs for searching through files. These
235 programs are used by most packages' build scripts.</para>
236 </listitem>
237
238 <listitem>
239 <para>Groff</para>
240
241 <para>This package contains programs for processing and formatting text.
242 One important function of these programs is to format man pages.</para>
243 </listitem>
244
245 <listitem>
246 <para>GRUB</para>
247
248 <para>This package is the Grand Unified Boot Loader. It is one
249 of several boot loaders available, but is the most flexible.
250 </para>
251 </listitem>
252
253 <listitem>
254 <para>Gzip</para>
255
256 <para>This package contains programs for compressing and
257 decompressing files. It is needed to decompress many packages in LFS
258 and beyond.</para>
259 </listitem>
260
261 <listitem>
262 <para>Iana-etc</para>
263
264 <para>This package provides data for network services and protocols.
265 It is needed to enable proper networking capabilities.</para>
266 </listitem>
267
268 <listitem>
269 <para>Inetutils</para>
270
271 <para>This package contains programs for basic network
272 administration.</para>
273 </listitem>
274
275 <listitem>
276 <para>Intltool</para>
277
278 <para>This package contains internationalization tools; it is required
279 by Systemd.</para>
280 </listitem>
281
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
293 <para>This package contains key-table files, keyboard utilities
294 for non-US keyboards, and a number of console fonts.</para>
295 </listitem>
296
297 <listitem>
298 <para>Kmod</para>
299
300 <para>This package contains programs needed to administer Linux
301 kernel modules.</para>
302 </listitem>
303
304 <listitem>
305 <para>Less</para>
306
307 <para>This package contains a very nice text file viewer that
308 allows scrolling up or down when viewing a file. It is also used by
309 Man-DB for viewing manpages.</para>
310 </listitem>
311
312 <listitem>
313 <para>Libcap</para>
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
328 <listitem>
329 <para>Libtool</para>
330
331 <para>This package contains the GNU generic library support
332 script. It wraps the complexity of using shared libraries in a
333 consistent, portable interface. It is needed by the test
334 suites in other LFS packages.</para>
335 </listitem>
336
337 <listitem>
338 <para>Linux Kernel</para>
339
340 <para>This package is the Operating System. It is the Linux in
341 the GNU/Linux environment.</para>
342 </listitem>
343
344 <listitem>
345 <para>M4</para>
346
347 <para>This package contains a general text macro processor useful
348 as a build tool for other programs.</para>
349 </listitem>
350
351 <listitem>
352 <para>Make</para>
353
354 <para>This package contains a program for directing the building
355 of packages. It is required by almost every package in LFS.</para>
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
364 the man program.</para>
365 </listitem>
366
367 <listitem>
368 <para>Man-pages</para>
369
370 <para>This package contains the actual contents of the basic
371 Linux man pages.</para>
372 </listitem>
373
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
381 <listitem>
382 <para>MPFR</para>
383
384 <para>This package contains functions for multiple precision
385 arithmetic. It is required by Gcc.</para>
386 </listitem>
387
388 <listitem>
389 <para>Ncurses</para>
390
391 <para>This package contains libraries for terminal-independent
392 handling of character screens. It is often used to provide
393 cursor control for a menuing system. It is needed by a number of
394 packages in LFS.</para>
395 </listitem>
396
397 <listitem>
398 <para>Patch</para>
399
400 <para>This package contains a program for modifying or creating files by
401 applying a <emphasis>patch</emphasis> file typically created
402 by the <application>diff</application> program. It is needed by
403 the build procedure for several LFS packages.</para>
404 </listitem>
405
406 <listitem>
407 <para>Perl</para>
408
409 <para>This package is an interpreter for the runtime language
410 PERL. It is needed for the installation and test suites of several LFS
411 packages.</para>
412 </listitem>
413
414 <listitem>
415 <para>Pkg-config</para>
416
417 <para>This package provides a program to return meta-data about an
418 installed library or package.</para>
419 </listitem>
420
421 <listitem>
422 <para>Procps-NG</para>
423
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>
427 </listitem>
428
429 <listitem>
430 <para>Psmisc</para>
431
432 <para>This package contains programs for displaying information
433 about running processes. These programs are useful for system
434 administration.</para>
435 </listitem>
436
437 <listitem>
438 <para>Readline</para>
439
440 <para>This package is a set of libraries that offers command-line
441 editing and history capabilities. It is used by Bash.</para>
442 </listitem>
443
444 <listitem>
445 <para>Sed</para>
446
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
449 scripts.</para>
450 </listitem>
451
452 <listitem>
453 <para>Shadow</para>
454
455 <para>This package contains programs for handling passwords
456 in a secure way.</para>
457 </listitem>
458
459 <listitem>
460 <para>Systemd</para>
461
462 <para>This package contains programs for controlling the startup,
463 running, and shutdown of the system.</para>
464 </listitem>
465
466 <listitem>
467 <para>Sysvinit</para>
468
469 <para>This package provides misc. utils needed by some packages.</para>
470 </listitem>
471
472 <listitem>
473 <para>Tar</para>
474
475 <para>This package provides archiving and extraction capabilities
476 of virtually all packages used in LFS.</para>
477 </listitem>
478
479 <listitem>
480 <para>Tcl</para>
481
482 <para>This package contains the Tool Command Language used
483 in many test suites in LFS packages. It is only installed in
484 the temporary toolchain.</para>
485 </listitem>
486
487 <listitem>
488 <para>Texinfo</para>
489
490 <para>This package contains programs for reading, writing, and
491 converting info pages. It is used in the installation
492 procedures of many LFS packages.</para>
493 </listitem>
494
495 <listitem>
496 <para>Util-linux</para>
497
498 <para>This package contains miscellaneous utility programs.
499 Among them are utilities for handling file systems, consoles,
500 partitions, and messages.</para>
501 </listitem>
502
503 <listitem>
504 <para>Vim</para>
505
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
508 capabilities. An editor is a very personal choice for
509 many users and any other editor could be substituted if desired.</para>
510 </listitem>
511
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
519 <listitem>
520 <para>XZ Utils</para>
521
522 <para>This package contains programs for compressing and decompressing
523 files. It provides the highest compression generally available
524 and is useful for decompressing packages XZ or LZMA format.</para>
525 </listitem>
526
527 <listitem>
528 <para>Zlib</para>
529
530 <para>This package contains compression and decompression routines
531 used by some programs.</para>
532 </listitem>
533
534 </itemizedlist>
535
536</sect1>
537
Note: See TracBrowser for help on using the repository browser.