aboutsummaryrefslogtreecommitdiffstats
path: root/chapter02/creatingfilesystem.xml
diff options
context:
space:
mode:
authorManuel Canales Esparcia <manuel@linuxfromscratch.org>2004-05-29 20:00:54 +0000
committerManuel Canales Esparcia <manuel@linuxfromscratch.org>2004-05-29 20:00:54 +0000
commit55851d6ef3b438d78359c9ea0ba861069bedeeb1 (patch)
treed9f97db0df5856fb68fd325a4885b9edbf2d5c90 /chapter02/creatingfilesystem.xml
parentd44a965cfe95996da670a7f053cb30222e41b36f (diff)
Tagging corrections in chapters 1 to 4.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@3725 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter02/creatingfilesystem.xml')
-rw-r--r--chapter02/creatingfilesystem.xml10
1 files changed, 5 insertions, 5 deletions
diff --git a/chapter02/creatingfilesystem.xml b/chapter02/creatingfilesystem.xml
index 3745679b8..ae1f5b8c6 100644
--- a/chapter02/creatingfilesystem.xml
+++ b/chapter02/creatingfilesystem.xml
@@ -16,18 +16,18 @@ system, but build instructions for other file systems can be found at
<para>To create an ext2 file system on the LFS partition run the following:</para>
-<screen><userinput>mke2fs /dev/xxx</userinput></screen>
+<screen><userinput>mke2fs /dev/<replaceable>[xxx]</replaceable></userinput></screen>
-<para>Replace <filename>xxx</filename> with the name of the LFS partition
+<para>Replace <replaceable>[xxx]</replaceable> with the name of the LFS partition
(something like <filename>hda5</filename>).</para>
<para>If you created a (new) swap partition you need to initialize it as a
swap partition too (also known as formatting, like you did above with
-<userinput>mke2fs</userinput>) by running:</para>
+<command>mke2fs</command>) by running:</para>
-<screen><userinput>mkswap /dev/yyy</userinput></screen>
+<screen><userinput>mkswap /dev/<replaceable>[yyy]</replaceable></userinput></screen>
-<para>Replace <filename>yyy</filename> with the name of the swap
+<para>Replace <replaceable>[yyy]</replaceable> with the name of the swap
partition.</para>
</sect1>