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
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>Binutils</para>
68
69 <para>This package contains a linker, an assembler, and other
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>
72 </listitem>
73
74 <listitem>
75 <para>Bison</para>
76
77 <para>This package contains the GNU version of yacc (Yet Another
78 Compiler Compiler) needed to build several other LFS programs.</para>
79 </listitem>
80
81 <listitem>
82 <para>Bzip2</para>
83
84 <para>This package contains programs for compressing and decompressing
85 files. It is required to decompress many LFS packages.</para>
86 </listitem>
87
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
95 <listitem>
96 <para>Coreutils</para>
97
98 <para>This package contains a number of essential programs for viewing
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>
102 </listitem>
103
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
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
121 <para>This package contains programs that show the differences
122 between files or directories. These programs can be used to create
123 patches, and are also used in many packages' build procedures.</para>
124 </listitem>
125
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
141 <listitem>
142 <para>Expect</para>
143
144 <para>This package contains a program for carrying out scripted
145 dialogues with other interactive programs. It is commonly used
146 for testing other packages. It is only installed in the temporary
147 toolchain.</para>
148 </listitem>
149
150 <listitem>
151 <para>File</para>
152
153 <para>This package contains a utility for determining the type of a
154 given file or files. A few packages need it to build.</para>
155 </listitem>
156
157 <listitem>
158 <para>Findutils</para>
159
160 <para>This package contains programs to find files in a file system.
161 It is used in many packages' build scripts.</para>
162 </listitem>
163
164 <listitem>
165 <para>Flex</para>
166
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
170 LFS packages.</para>
171 </listitem>
172
173 <listitem>
174 <para>Gawk</para>
175
176 <para>This package contains programs for manipulating text files.
177 It is the GNU version of awk (Aho-Weinberg-Kernighan). It is used in
178 many other packages' build scripts.</para>
179 </listitem>
180
181 <listitem>
182 <para>Gcc</para>
183
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.
186 </para>
187 </listitem>
188
189 <listitem>
190 <para>GDBM</para>
191
192 <para>This package contains the GNU Database Manager library. It
193 is used by one other LFS package, Man-DB.</para>
194 </listitem>
195
196 <listitem>
197 <para>Gettext</para>
198
199 <para>This package contains utilities and libraries for
200 internationalization and localization of numerous packages.</para>
201 </listitem>
202
203 <listitem>
204 <para>Glibc</para>
205
206 <para>This package contains the main C library. Linux programs would
207 not run without it.</para>
208 </listitem>
209
210 <listitem>
211 <para>GMP</para>
212
213 <para>This package contains math libraries that provide useful functions
214 for arbitrary precision arithmetic. It is required to build Gcc.</para>
215 </listitem>
216
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
224 <listitem>
225 <para>Grep</para>
226
227 <para>This package contains programs for searching through files. These
228 programs are used by most packages' build scripts.</para>
229 </listitem>
230
231 <listitem>
232 <para>Groff</para>
233
234 <para>This package contains programs for processing and formatting text.
235 One important function of these programs is to format man pages.</para>
236 </listitem>
237
238 <listitem>
239 <para>GRUB</para>
240
241 <para>This package is the Grand Unified Boot Loader. It is one
242 of several boot loaders available, but is the most flexible.
243 </para>
244 </listitem>
245
246 <listitem>
247 <para>Gzip</para>
248
249 <para>This package contains programs for compressing and
250 decompressing files. It is needed to decompress many packages in LFS
251 and beyond.</para>
252 </listitem>
253
254 <listitem>
255 <para>Iana-etc</para>
256
257 <para>This package provides data for network services and protocols.
258 It is needed to enable proper networking capabilities.</para>
259 </listitem>
260
261 <listitem>
262 <para>Inetutils</para>
263
264 <para>This package contains programs for basic network
265 administration.</para>
266 </listitem>
267
268 <listitem>
269 <para>Intltool</para>
270
271 <para>This package contains internationalization tools; it is required
272 by Systemd.</para>
273 </listitem>
274
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
286 <para>This package contains key-table files, keyboard utilities
287 for non-US keyboards, and a number of console fonts.</para>
288 </listitem>
289
290 <listitem>
291 <para>Kmod</para>
292
293 <para>This package contains programs needed to administer Linux
294 kernel modules.</para>
295 </listitem>
296
297 <listitem>
298 <para>Less</para>
299
300 <para>This package contains a very nice text file viewer that
301 allows scrolling up or down when viewing a file. It is also used by
302 Man-DB for viewing manpages.</para>
303 </listitem>
304
305 <listitem>
306 <para>Libcap</para>
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
321 <listitem>
322 <para>Libtool</para>
323
324 <para>This package contains the GNU generic library support
325 script. It wraps the complexity of using shared libraries in a
326 consistent, portable interface. It is needed by the test
327 suites in other LFS packages.</para>
328 </listitem>
329
330 <listitem>
331 <para>Linux Kernel</para>
332
333 <para>This package is the Operating System. It is the Linux in
334 the GNU/Linux environment.</para>
335 </listitem>
336
337 <listitem>
338 <para>M4</para>
339
340 <para>This package contains a general text macro processor useful
341 as a build tool for other programs.</para>
342 </listitem>
343
344 <listitem>
345 <para>Make</para>
346
347 <para>This package contains a program for directing the building
348 of packages. It is required by almost every package in LFS.</para>
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
357 the man program.</para>
358 </listitem>
359
360 <listitem>
361 <para>Man-pages</para>
362
363 <para>This package contains the actual contents of the basic
364 Linux man pages.</para>
365 </listitem>
366
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
374 <listitem>
375 <para>MPFR</para>
376
377 <para>This package contains functions for multiple precision
378 arithmetic. It is required by Gcc.</para>
379 </listitem>
380
381 <listitem>
382 <para>Ncurses</para>
383
384 <para>This package contains libraries for terminal-independent
385 handling of character screens. It is often used to provide
386 cursor control for a menuing system. It is needed by a number of
387 packages in LFS.</para>
388 </listitem>
389
390 <listitem>
391 <para>Patch</para>
392
393 <para>This package contains a program for modifying or creating files by
394 applying a <emphasis>patch</emphasis> file typically created
395 by the <application>diff</application> program. It is needed by
396 the build procedure for several LFS packages.</para>
397 </listitem>
398
399 <listitem>
400 <para>Perl</para>
401
402 <para>This package is an interpreter for the runtime language
403 PERL. It is needed for the installation and test suites of several LFS
404 packages.</para>
405 </listitem>
406
407 <listitem>
408 <para>Pkg-config</para>
409
410 <para>This package provides a program to return meta-data about an
411 installed library or package.</para>
412 </listitem>
413
414 <listitem>
415 <para>Procps-NG</para>
416
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>
420 </listitem>
421
422 <listitem>
423 <para>Psmisc</para>
424
425 <para>This package contains programs for displaying information
426 about running processes. These programs are useful for system
427 administration.</para>
428 </listitem>
429
430 <listitem>
431 <para>Readline</para>
432
433 <para>This package is a set of libraries that offers command-line
434 editing and history capabilities. It is used by Bash.</para>
435 </listitem>
436
437 <listitem>
438 <para>Sed</para>
439
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
442 scripts.</para>
443 </listitem>
444
445 <listitem>
446 <para>Shadow</para>
447
448 <para>This package contains programs for handling passwords
449 in a secure way.</para>
450 </listitem>
451
452 <listitem>
453 <para>Systemd</para>
454
455 <para>This package contains programs for controlling the startup,
456 running, and shutdown of the system.</para>
457 </listitem>
458
459 <listitem>
460 <para>Sysvinit</para>
461
462 <para>This package provides misc. utils needed by some packages.</para>
463 </listitem>
464
465 <listitem>
466 <para>Tar</para>
467
468 <para>This package provides archiving and extraction capabilities
469 of virtually all packages used in LFS.</para>
470 </listitem>
471
472 <listitem>
473 <para>Tcl</para>
474
475 <para>This package contains the Tool Command Language used
476 in many test suites in LFS packages. It is only installed in
477 the temporary toolchain.</para>
478 </listitem>
479
480 <listitem>
481 <para>Texinfo</para>
482
483 <para>This package contains programs for reading, writing, and
484 converting info pages. It is used in the installation
485 procedures of many LFS packages.</para>
486 </listitem>
487
488 <listitem>
489 <para>Util-linux</para>
490
491 <para>This package contains miscellaneous utility programs.
492 Among them are utilities for handling file systems, consoles,
493 partitions, and messages.</para>
494 </listitem>
495
496 <listitem>
497 <para>Vim</para>
498
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
501 capabilities. An editor is a very personal choice for
502 many users and any other editor could be substituted if desired.</para>
503 </listitem>
504
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
512 <listitem>
513 <para>XZ Utils</para>
514
515 <para>This package contains programs for compressing and decompressing
516 files. It provides the highest compression generally available
517 and is useful for decompressing packages XZ or LZMA format.</para>
518 </listitem>
519
520 <listitem>
521 <para>Zlib</para>
522
523 <para>This package contains compression and decompression routines
524 used by some programs.</para>
525 </listitem>
526
527 </itemizedlist>
528
529</sect1>
530
Note: See TracBrowser for help on using the repository browser.