| 12345678910111213141516171819202122232425262728293031 | <sect1 id="ch04-creatingfs"><title>Creating a file system on the new partition</title><para>Once the partition is created, we have to create a new file system onthat 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 mkreiserfscommand. If you want to create a different kind of file system, use theappropriate command. Enter the new partition as the only option to thecommand and the file system will be created. If your partition is hda2and you want ext2 you would run:</para><blockquote><literallayout>	<userinput>mke2fs /dev/hda2</userinput></literallayout></blockquote><para>If you want reiserfs you would run:</para><blockquote><literallayout>	<userinput>mkreiserfs /dev/hda2</userinput></literallayout></blockquote></sect1>
 |