Changeset 87c057b


Ignore:
Timestamp:
03/22/2001 03:27:52 AM (23 years ago)
Author:
Simon Perreault <nomis80@…>
Branches:
10.0, 10.0-rc1, 10.1, 10.1-rc1, 11.0, 11.0-rc1, 11.0-rc2, 11.0-rc3, 11.1, 11.1-rc1, 11.2, 11.2-rc1, 11.3, 11.3-rc1, 12.0, 12.0-rc1, 12.1, 12.1-rc1, 6.0, 6.1, 6.1.1, 6.3, 6.4, 6.5, 6.6, 6.7, 6.8, 7.0, 7.1, 7.2, 7.3, 7.4, 7.5, 7.5-systemd, 7.6, 7.6-systemd, 7.7, 7.7-systemd, 7.8, 7.8-systemd, 7.9, 7.9-systemd, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, arm, bdubbs/gcc13, ml-11.0, multilib, renodr/libudev-from-systemd, s6-init, trunk, v3_0, v3_1, v3_2, v3_3, v4_0, v4_1, v5_0, v5_1, v5_1_1, xry111/arm64, xry111/arm64-12.0, xry111/clfs-ng, xry111/lfs-next, xry111/loongarch, xry111/loongarch-12.0, xry111/loongarch-12.1, xry111/mips64el, xry111/pip3, xry111/rust-wip-20221008, xry111/update-glibc
Children:
d251197
Parents:
9bfaaae
Message:

Grammar fixes.

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

Location:
chapter02
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • chapter02/bootscripts.xml

    r9bfaaae r87c057b  
    33
    44<para>
    5 Typing out all the bootscripts in chapters 7 and 9 can be a long tedious
     5Typing out all the bootscripts in chapters 7 and 9 can be a long, tedious
    66process, not to mention very error-prone.
    77</para>
  • chapter02/commands.xml

    r9bfaaae r87c057b  
    66commands for the packages installed in this book. These files can be
    77used to dump to a shell and install the packages, though some files
    8 need to be modified (for example when the console-tools package is
    9 installed it is needed to select the keyboard layout file which can't be
     8need to be modified (for example, when the console-tools package is
     9installed, it is needed to select the keyboard layout file, which can't be
    1010guessed).
    1111</para>
     
    1515changed between the different LFS versions as well. A user just downloads the
    1616lfs-commands tarball for this book version and the previous book version
    17 and run a diff on the files. That way it is possible to see which packages
     17and runs a diff on the files. That way it is possible to see which packages
    1818have
    19 updated installation instructions and he can modify his own scripts, or
     19updated installation instructions, and he can modify his own scripts or
    2020reinstall a package if it seems necessary.
    2121</para>
     
    2626http://download.linuxfromscratch.org/lfs-commands/</ulink> or <ulink
    2727url="ftp://download.linuxfromscratch.org/lfs-commands/">
    28 ftp://download.linuxfromscratch.org/lfs-commands/</ulink>
     28ftp://download.linuxfromscratch.org/lfs-commands/</ulink>.
    2929</para>
    3030
  • chapter02/install.xml

    r9bfaaae r87c057b  
    55Before a user can actually start doing something with a package, he needs
    66to unpack it first. Often the package files are tar'ed and
    7 gzip'ed. (that can determined by looking at the extension of the file.
    8 tar'ed and gzip'ed archives have a .tar.gz or .tgz extension, for
     7gzip'ed. (That can determined by looking at the extension of the file.
     8Tar'ed and gzip'ed archives have a .tar.gz or .tgz extension, for
    99example.) I'm not going to write down every time how to ungzip and how
    1010to untar an archive. I will tell how to do that once, in this section.
    11 There is also the possibility  that a .tar.bz2 file can be downloaded.
    12 Such a file is tar'ed and compressed with the bzip2 program.
     11There is also the possibility that a .tar.bz2 file could be downloaded.
     12Such a file would be tar'ed and compressed with the bzip2 program.
    1313Bzip2 achieves a better compression than the commonly used gzip does. In
    14 order to use bz2 archives the bzip2 program needs to be installed.
    15 Most if not every distribution comes with this program so chances are
    16 high it is already installed on the host-system. If not, it's installed using
     14order to use bz2 archives, the bzip2 program needs to be installed.
     15Most if not every distribution comes with this program, so chances are
     16high it is already installed on the host system. If not, it's installed using
    1717the distribution's installation tool.
    1818</para>
     
    5656Some tar programs (most of them nowadays but not all of them) are
    5757slightly modified to be able to use bzip2 files directly using either
    58 the I or the y tar parameter which works the same as the z tar parameter
     58the I or the y tar parameter, which works the same as the z tar parameter
    5959to handle gzip archives.
    6060</para>
     
    7171
    7272<para>
    73 When the archive is unpacked a new directory will be created under the
     73When the archive is unpacked, a new directory will be created under the
    7474current directory (and this document assumes that the archives are unpacked
    7575under the $LFS/usr/src directory). A user has to enter that new directory
    76 before continuing with the installation instructions. So every time the
     76before continuing with the installation instructions. So, every time the
    7777book is going to install a program, it's up to the user to unpack the source
    7878archive.
     
    8080
    8181<para>
    82 f a file is gzip'ed, it is unpacked by running:
     82If a file is gzip'ed, it is unpacked by running:
    8383</para>
    8484
     
    9090
    9191<para>
    92 After a package is installed two things can be done with it.
    93 Either the directory that contains the sources can be deleted
    94 or it can be kept.
    95 If it is kept, that's fine with me. But, if the same package is needed
     92After a package is installed, two things can be done with it:
     93either the directory that contains the sources can be deleted,
     94either it can be kept.
     95If it is kept, that's fine with me, but if the same package is needed
    9696again in a later chapter, the directory needs to be deleted first before using
    9797it again. If this is not done, it might end up in trouble because old
Note: See TracChangeset for help on using the changeset viewer.