source: prologue/why.xml@ 251a06a

Last change on this file since 251a06a was 251a06a, checked in by Krejzi <krejzi@…>, 10 years ago

Release 7.6-systemd-rc2.

git-svn-id: http://svn.linuxfromscratch.org/LFS/tags/7.6-systemd-rc2@10751 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

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