blob: 76bbe247fd3f5cc9b26ca0bd1f1fbfc2f7d22c58 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<sect1 id="ch04-creatingfs">
<title>Creating a ext2 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:
</para>
<blockquote><literallayout>
<userinput>mke2fs /dev/hda11</userinput>
</literallayout></blockquote>
</sect1>
|