aboutsummaryrefslogtreecommitdiffstats
path: root/chapter03/creatingfs.xml
diff options
context:
space:
mode:
authorGerard Beekmans <gerard@linuxfromscratch.org>2002-10-18 17:00:20 +0000
committerGerard Beekmans <gerard@linuxfromscratch.org>2002-10-18 17:00:20 +0000
commit8b5830cecaeff2cae91b3690d3b45cb4d0376979 (patch)
tree5de4e0d945a51407bf65f433461561732bc1ec69 /chapter03/creatingfs.xml
parentb60ca14d6c885f123ac4a242529d036134737d7d (diff)
Applied Alex patch rewriting the chapter
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@2174 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter03/creatingfs.xml')
-rw-r--r--chapter03/creatingfs.xml18
1 files changed, 9 insertions, 9 deletions
diff --git a/chapter03/creatingfs.xml b/chapter03/creatingfs.xml
index ec3043a2e..d78db47db 100644
--- a/chapter03/creatingfs.xml
+++ b/chapter03/creatingfs.xml
@@ -2,19 +2,19 @@
<title>Creating a file system on the new partition</title>
<?dbhtml filename="creatingfs.html" dir="chapter04"?>
-<para>Once the partition is created, we have to create a new file system on
-that partition. The standard file system used these days is the ext2 file
-system, but the so-called journaling file systems are becoming increasingly
-popular too. We'll assume that you wish to create an ext2 file system.
-However, build instructions for other file systems may be found at
-<ulink url="http://beyond.linuxfromscratch.org/view/cvs/postlfs/filesystems.html"/>.</para>
+<para>Now the partition has been made, we can create a file system on it.
+Most widely used in the Linux world is the second extended file system (ext2),
+but with the high-capacity hard disks of today the so-called journaling file
+systems are becoming increasingly popular. Here we will create an ext2 file
+system, but build instructions for other file systems can be found at <ulink
+url="http://beyond.linuxfromscratch.org/view/cvs/postlfs/filesystems.html"/>.</para>
-<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>To create an ext2 file system on the LFS partition run the following:</para>
<para><screen><userinput>mke2fs /dev/xxx</userinput></screen></para>
-<para>Replace "xxx" by the partition's designation (like hda11).</para>
+<para>Replace <filename>xxx</filename> with the name of the LFS partition
+(something like <filename>hda5</filename>).</para>
</sect1>