diff options
Diffstat (limited to 'chapter02/creatingfilesystem.xml')
-rw-r--r-- | chapter02/creatingfilesystem.xml | 10 |
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> |