mirror of
https://git.linuxfromscratch.org/lfs.git
synced 2025-01-31 19:32:03 +00:00
79d0d3eefd
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@244 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
32 lines
839 B
XML
32 lines
839 B
XML
<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 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/hda2</userinput>
|
|
|
|
</literallayout></blockquote>
|
|
|
|
<para>
|
|
If you want reiserfs you would run:
|
|
</para>
|
|
|
|
<blockquote><literallayout>
|
|
|
|
<userinput>mkreiserfs /dev/hda2</userinput>
|
|
|
|
</literallayout></blockquote>
|
|
|
|
</sect1>
|
|
|