Text update

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@356 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
This commit is contained in:
Gerard Beekmans 2001-03-23 03:03:02 +00:00
parent ff9fe0170a
commit 6dc64f628c
2 changed files with 16 additions and 18 deletions

View File

@ -5,26 +5,24 @@
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, the mke2fs command is the that partition. To create an ext2 file system, the mke2fs command is the
correct choice. To create a reiser file system, the mkreiserfs command correct choice. To create a reiser file system, the mkreiserfs command
should be used. To create a different kind of file system, the should be used. The new partition is used as the only option to the
appropriate command needs to be executed. The new partition is used command and the file system is created. If the partition is hda11
as the only option to the
command and the file system is created. If the partition is hda2
and ext2 is to be created, the user would run: and ext2 is to be created, the user would run:
</para> </para>
<blockquote><literallayout> <blockquote><literallayout>
<userinput>mke2fs /dev/hda2</userinput> <userinput>mke2fs /dev/hda11</userinput>
</literallayout></blockquote> </literallayout></blockquote>
<para> <para>
To use reiserfs the user would run: To create a reiser file system the user would run:
</para> </para>
<blockquote><literallayout> <blockquote><literallayout>
<userinput>mkreiserfs /dev/hda2</userinput> <userinput>mkreiserfs /dev/hda11</userinput>
</literallayout></blockquote> </literallayout></blockquote>

View File

@ -4,22 +4,22 @@
<para> <para>
Before we can build our new Linux system, we need to have an empty Linux Before we can build our new Linux system, we need to have an empty Linux
partition on which we can build our new system. I recommend a partition size partition on which we can build our new system. I recommend a partition size
of around 750 MB. This gives enough space to store all the tarballs and of at least 750 MB. This gives enough space to store all the tarballs and
to compile all packages without worrying about running out of the necessary to compile all packages without worrying about running out of the necessary
temporary disk space. If a Linux Native partition is already available, temporary disk space. But you probably want more space than that if you
this subsection can be skipped. plan to use the LFS system as your primary Linux system. If that's the
case you'd want more space so you can install additional software. If a
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 the user prefers) is
started with the started with the appropriate hard disk as the option (like /dev/hda if a
appropriate hard disk as the option (like /dev/hda if the gentle reader new partition is to be created on the primary master IDE disk). It is used
wants to create a to create a Linux Native partition, write the partition table and exit the
new partition on the primary master IDE disk). It is used to create a Linux cfdisk program. The new partition's designation should be remembered. It
Native partition, write the partition table and exit the cfdisk program. could be something like hda11 (as it is in my case). This newly created
The new partition's designation should be remembered. It could be something partition will be referred to as the LFS partition in this book.
like hda11 (as it is in my case). This newly created partition will be
referred to as the LFS partition in this book.
</para> </para>
</sect1> </sect1>