Changeset b79e65a0
- Timestamp:
- 01/31/2023 07:21:43 PM (4 months ago)
- Branches:
- 11.3, 11.3-rc1, bdubbs/gcc13, multilib, trunk, xry111/arm64, xry111/clfs-ng, xry111/glibc-2.37, xry111/kcfg-revise
- Children:
- aa68b0c, b595526
- Parents:
- d7d7bd5 (diff), 2d516c7 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
appendices/dependencies.xml
rd7d7bd5 rb79e65a0 3080 3080 <ulink url="&blfs-book;x/installing.html">Xorg</ulink>, 3081 3081 <ulink url="&blfs-book;x/gtk2.html">GTK+2</ulink>, 3082 <ulink url="http ://lesstif.sourceforge.net/">LessTif</ulink>,3082 <ulink url="https://lesstif.sourceforge.net/">LessTif</ulink>, 3083 3083 <ulink url="&blfs-book;general/ruby.html">Ruby</ulink>, and 3084 3084 <ulink url="&blfs-book;general/gpm.html">GPM</ulink> -
chapter05/gcc-pass1.xml
rd7d7bd5 rb79e65a0 209 209 in normal circumstances:</para> 210 210 211 <note> 212 <para>The command below shows an example of nested command substitution 213 using two methods: backquotes and a <literal>$()</literal> construct. 214 It could be rewritten using the same method for both substitutions, 215 but is shown this way to demonstrate how they can be mixed. Generally 216 the <literal>$()</literal> method is preferred.</para> 217 </note> 218 211 219 <screen><userinput remap="install">cd .. 212 220 cat gcc/limitx.h gcc/glimits.h gcc/limity.h > \ -
chapter08/dbus.xml
rd7d7bd5 rb79e65a0 68 68 </term> 69 69 <listitem> 70 <para>These set the location ofthe PID file and the system bus socket70 <para>These cause the PID file and the system bus socket 71 71 to be in <filename class="directory">/run</filename>, instead of 72 deprecated <filename class="directory">/var/run</filename>.</para>72 the deprecated <filename class="directory">/var/run</filename>.</para> 73 73 </listitem> 74 74 </varlistentry> -
chapter08/markupsafe.xml
rd7d7bd5 rb79e65a0 24 24 <title/> 25 25 26 <para>MarkupSafe is a Python module that implements a XML/HTML/XHTML Markup26 <para>MarkupSafe is a Python module that implements an XML/HTML/XHTML Markup 27 27 safe string.</para> 28 28 -
chapter08/systemd.xml
rd7d7bd5 rb79e65a0 83 83 <listitem> 84 84 <para>This switch overrides the default buildtype 85 (<quote>debug</quote>), which would produceunoptimized85 (<quote>debug</quote>), which produces unoptimized 86 86 binaries.</para> 87 87 </listitem> … … 100 100 <para>This switch prevents installation of systemd 101 101 services responsible for setting up the system for 102 the first time. The y are not useful for LFSbecause102 the first time. These are not useful in LFS, because 103 103 everything is done manually.</para> 104 104 </listitem> … … 116 116 <listitem> 117 117 <para>This switch prevents installation of a systemd unit that runs 118 <command>ldconfig</command> at boot , whichis not useful for source119 distributions such as LFS and makes the boot time longer. Remove it120 if the described feature is desired.</para>118 <command>ldconfig</command> at boot; this is not useful for source 119 distributions such as LFS, and makes the boot time longer. Remove 120 this option to enable running <command>ldconfig</command> at boot.</para> 121 121 </listitem> 122 122 </varlistentry> … … 138 138 <listitem> 139 139 <para>This switch disables installation of RPM Macros 140 for use with systemd because LFS does not support RPM.</para>140 for use with systemd, because LFS does not support RPM.</para> 141 141 </listitem> 142 142 </varlistentry> … … 145 145 <term><parameter>-D{userdb,homed}=false</parameter></term> 146 146 <listitem> 147 <para>Remove two daemons that havedependencies that do not fit148 the scope of LFS.</para>147 <para>Remove two daemons with dependencies that do not fit 148 within the scope of LFS.</para> 149 149 </listitem> 150 150 </varlistentry> … … 155 155 <para>Prevent the generation of man pages to avoid extra 156 156 dependencies. We will install pre-generated man pages for systemd 157 from a tarball later.</para>157 from a tarball.</para> 158 158 </listitem> 159 159 </varlistentry> … … 195 195 <screen><userinput remap="adjust">systemd-machine-id-setup</userinput></screen> 196 196 197 <para>Set up the basic target structure:</para>197 <para>Set up the basic target structure:</para> 198 198 199 199 <screen><userinput remap="adjust">systemctl preset-all</userinput></screen> 200 200 201 201 <para>Disable two services for upgrading binary distros. They are useless for 202 a basic Linux system built from source, and bothwill report an error if202 a basic Linux system built from source, and each one will report an error if 203 203 it's enabled but not configured:</para> 204 204 … … 286 286 <para>Normally invokes <command>shutdown</command> with the 287 287 <parameter>-h</parameter> option, except when already in run-level 0, 288 then it tells the kernel to halt the system; it notes in the288 when it tells the kernel to halt the system; it notes in the 289 289 file <filename>/var/log/wtmp</filename> that the system is being 290 290 brought down</para> … … 309 309 <term><command>init</command></term> 310 310 <listitem> 311 <para>Is the first process to be started whenthe kernel has initialized312 the hardware which takes over the boot process and starts all313 processes according to its configuration files. In this case, it starts311 <para>Is the first process to be started after the kernel has initialized 312 the hardware; <command>init</command> takes over the boot process and starts the 313 processes specified by its configuration files; in this case, it starts 314 314 systemd</para> 315 315 <indexterm zone="ch-system-systemd init"> … … 333 333 <listitem> 334 334 <para>Is used to add and remove kernel and initramfs images to and 335 from /boot . In LFS, this is done manually</para>335 from /boot; in LFS, this is done manually</para> 336 336 <indexterm zone="ch-system-systemd kernel-install"> 337 337 <primary sortas="b-kernel-install">kernel-install</primary> … … 486 486 <term><command>systemd-analyze</command></term> 487 487 <listitem> 488 <para>Is used to determine system startup performance of the current489 boot,as well as identify troublesome systemd units</para>488 <para>Is used to analyze system startup performance, 489 as well as identify troublesome systemd units</para> 490 490 <indexterm zone="ch-system-systemd systemd-analyze"> 491 491 <primary sortas="b-systemd-analyze">systemd-analyze</primary> … … 498 498 <listitem> 499 499 <para>Is used to query a system password or passphrase from the user, 500 using a question message specified on thecommand line</para>500 using a message specified on the Linux command line</para> 501 501 <indexterm zone="ch-system-systemd systemd-ask-password"> 502 502 <primary sortas="b-systemd-ask-password">systemd-ask-password</primary> … … 532 532 <listitem> 533 533 <para>Shows the top control groups of the local Linux control group 534 hierarchy, ordered by their CPU, memory and disk I/O load </para>534 hierarchy, ordered by their CPU, memory and disk I/O loads</para> 535 535 <indexterm zone="ch-system-systemd systemd-cgtop"> 536 536 <primary sortas="b-systemd-cgtop">systemd-cgtop</primary> … … 553 553 <listitem> 554 554 <para>Is used to identify and compare configuration files in 555 <filename class="directory">/etc</filename> that override default556 counterpartsin <filename class="directory">/usr</filename></para>555 <filename class="directory">/etc</filename> that override the defaults 556 in <filename class="directory">/usr</filename></para> 557 557 <indexterm zone="ch-system-systemd systemd-delta"> 558 558 <primary sortas="b-systemd-delta">systemd-delta</primary> … … 606 606 <term><command>systemd-id128</command></term> 607 607 <listitem> 608 <para>Generates and prints id128 strings</para>608 <para>Generates and prints id128 (UUID) strings</para> 609 609 <indexterm zone="ch-system-systemd systemd-id128"> 610 610 <primary sortas="b-systemd-id128">systemd-id128</primary> … … 650 650 <term><command>systemd-notify</command></term> 651 651 <listitem> 652 <para>Is used by daemon scripts to notify the init system aboutstatus652 <para>Is used by daemon scripts to notify the init system of status 653 653 changes</para> 654 654 <indexterm zone="ch-system-systemd systemd-notify"> … … 661 661 <term><command>systemd-nspawn</command></term> 662 662 <listitem> 663 <para>Is used to run a command or OSin a light-weight namespace663 <para>Is used to run a command, or an entire OS, in a light-weight namespace 664 664 container</para> 665 665 <indexterm zone="ch-system-systemd systemd-nspawn"> … … 683 683 <listitem> 684 684 <para>Is used to grow and add partitions to a partition table when 685 systemd is used inan OS image (e.g. a container)</para>685 systemd is used with an OS image (e.g. a container)</para> 686 686 <indexterm zone="ch-system-systemd systemd-repart"> 687 687 <primary sortas="b-systemd-repart">systemd-repart</primary> … … 705 705 <listitem> 706 706 <para>Is used to create and start a transient .service or a .scope 707 unit and run the specified command in it . This is useful for707 unit and run the specified command in it; this is useful for 708 708 validating systemd units</para> 709 709 <indexterm zone="ch-system-systemd systemd-run"> … … 737 737 <term><command>systemd-tmpfiles</command></term> 738 738 <listitem> 739 <para>Creates, deletes and cleans up volatile and temporary files and739 <para>Creates, deletes, and cleans up volatile and temporary files and 740 740 directories, based on the configuration file format and location 741 741 specified in … … 794 794 <listitem> 795 795 <para>Is a generic udev administration tool which controls the udevd 796 daemon, provides info from the Udev hardware database, monitors796 daemon, provides info from the udev hardware database, monitors 797 797 uevents, waits for uevents to finish, tests udev configuration, and 798 798 triggers uevents for a given device</para>
Note:
See TracChangeset
for help on using the changeset viewer.