diff options
author | Gerard Beekmans <gerard@linuxfromscratch.org> | 2001-02-28 00:08:17 +0000 |
---|---|---|
committer | Gerard Beekmans <gerard@linuxfromscratch.org> | 2001-02-28 00:08:17 +0000 |
commit | 4eea3b2a3ed2498bbd75123a3126a509213e4b51 (patch) | |
tree | 3aba8e5c16411097c4323318ca449ae15280457d /chapter03 | |
parent | c81e81ce3b90b1a53108d807eb285c238627e73c (diff) |
Made creation of file system more generic as ext2 isn't the only one
used (reiserfs is often used too now)
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@242 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter03')
-rw-r--r-- | chapter03/creatingfs.xml | 25 |
1 files changed, 19 insertions, 6 deletions
diff --git a/chapter03/creatingfs.xml b/chapter03/creatingfs.xml index 76bbe247f..6be252a47 100644 --- a/chapter03/creatingfs.xml +++ b/chapter03/creatingfs.xml @@ -1,16 +1,29 @@ <sect1 id="ch04-creatingfs"> -<title>Creating a ext2 file system on the new partition</title> +<title>Creating a file system on the new partition</title> <para> -Once the partition is created, we have to create a new ext2 file system on -that partition. To create a new ext2 file system we use the mke2fs command. -Enter the new partition as the only option and the file system will be -created. If your partition is hda11, you would run: +Once the partition is created, we have to create a new file system on +that partition. If you want to create an ext2 file system, use the mke2fs +command. If you want to create a reiser file system, use the mkreiserfs +command. If you want to create a different kind of file system, use the +appropriate command. Enter the new partition as the only option to the +command and the file system will be created. If your partition is hda2 +and you want ext2 you would run: </para> <blockquote><literallayout> - <userinput>mke2fs /dev/hda11</userinput> + <userinput>mke2fs /dev/hda2</userinput> + +</literallayout></blockquote> + +<para> +If you want reiserfs you would run: +</para> + +<blockquote><literllayout> + + <userinput>mkreiserfs /dev/hda2</userinput> </literallayout></blockquote> |