Grammar updates (mostly)

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@487 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
This commit is contained in:
Gerard Beekmans 2001-04-14 01:10:15 +00:00
parent b4a4650026
commit 0c396df901
4 changed files with 28 additions and 29 deletions

View File

@ -3,11 +3,15 @@
<para> <para>
Once the partition is created, we have to create a new file system on Once the partition is created, we have to create a new file system on
that partition. To create an ext2 file system, use the mke2fs command. that partition. The standard file system used these days is the ext2
To create a reiser file system, the mkreiserfs command should be used. file system, but the socalled journaling file systems are becoming
The new partition is used as the only option to the command and the file increasingly popular too. It's of course up to you to decide which file
system is created. If the partition is hda11 and ext2 is to be created, system you want to create, but because we have to assume and work with
run the following: something, we will assume you chose the ext2 file system.
</para>
To create an ext2 file system, use the mke2fs command. The LFS partition
is used as the only option to the command and the file system is created.
</para> </para>
<blockquote><literallayout> <blockquote><literallayout>
@ -16,16 +20,6 @@ run the following:
</literallayout></blockquote> </literallayout></blockquote>
<para>
To create a reiser file system, run the following:
</para>
<blockquote><literallayout>
<userinput>mkreiserfs /dev/xxx</userinput>
</literallayout></blockquote>
<para> <para>
Replace "xxx" by the partition's designation (like hda11). Replace "xxx" by the partition's designation (like hda11).
</para> </para>

View File

@ -13,13 +13,20 @@ Linux Native partition is already available, this subsection can be skipped.
</para> </para>
<para> <para>
The cfdisk program (or another fdisk like program the user prefers) is The cfdisk program (or another fdisk like program you prefer)) is
started with the appropriate hard disk as the option (like /dev/hda if a started with the appropriate hard disk as the option (like /dev/hda if a
new partition is to be created on the primary master IDE disk). It is used new partition is to be created on the primary master IDE disk). It is used
to create a Linux Native partition, write the partition table and exit the to create a Linux Native partition, write the partition table and exit the
cfdisk program. The new partition's designation should be remembered. It cfdisk program. Please refer to the documentation that comes with your
could be something like hda11 (as it is in my case). This newly created fdisk program of choice (the man pages are often a good place to start)
partition will be referred to as the LFS partition in this book. and read the procedures about how to create a new Linux native
partition and how to write the partition table.
</para>
<para>
The new partition's designation should be remembered. It
could be something like hda11. This newly created partition will be
referred to as the LFS partition in this book.
</para> </para>
</sect1> </sect1>

View File

@ -3,10 +3,9 @@
<para> <para>
In this chapter, the partition that is going to host the LFS system is In this chapter, the partition that is going to host the LFS system is
going to be prepared. A new partition will be created, a file going to be prepared. We will be creating the partition itself, a file
system will be created on it, and the directory structure will be system and the directory structure. When this is done, we can move on
created. When this is done, we can move on to the next chapter and start to the next chapter and start the actual building process.
building a new Linux system from scratch.
</para> </para>
</sect1> </sect1>

View File

@ -3,12 +3,11 @@
<para> <para>
Now that we have created a file system, it is ready for use. All we have Now that we have created a file system, it is ready for use. All we have
to do to be able to access it (as in reading data from and writing data to to do to be able to access the partition (as in reading data from and writing
it) is mount it. If it is mounted under /mnt/lfs, this partition can data to) is mount it. If it is mounted under /mnt/lfs, this partition can
be accessed by going to the /mnt/lfs directory and then doing whatever be accessed by cd'ing to the /mnt/lfs directory. This book will assume
needed to do. This book will assume that the partition was mounted that the partition was mounted under /mnt/lfs. It doesn't matter which
under /mnt/lfs. It doesn't matter which directory is chosen, the directory is chosen, just make sure you remember what you chose.
user just has to make sure that he remembers what he chose.
</para> </para>
<para> <para>