diff options
author | Gerard Beekmans <gerard@linuxfromscratch.org> | 2005-02-19 22:16:42 +0000 |
---|---|---|
committer | Gerard Beekmans <gerard@linuxfromscratch.org> | 2005-02-19 22:16:42 +0000 |
commit | 81fd230419b0cfd052b08fc1ed352bb7d49975df (patch) | |
tree | 24c98d2876e5b457dcb88d39e7cca4905f58691a /chapter02/creatingfilesystem.xml | |
parent | 2f9131f8390243dbc350fe2eeb9e1d58f0264888 (diff) |
Trunk is now identical to Testing
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@4648 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter02/creatingfilesystem.xml')
-rw-r--r-- | chapter02/creatingfilesystem.xml | 26 |
1 files changed, 25 insertions, 1 deletions
diff --git a/chapter02/creatingfilesystem.xml b/chapter02/creatingfilesystem.xml index 489153e23..f013b9dec 100644 --- a/chapter02/creatingfilesystem.xml +++ b/chapter02/creatingfilesystem.xml @@ -7,6 +7,30 @@ <title>Creating a File System on the Partition</title> <?dbhtml filename="creatingfilesystem.html"?> -<para>See testing</para> +<para>Now that a blank partition has been set up, the file system can +be created. The most widely-used system in the Linux world is the +second extended file system (ext2), but with the newer high-capacity +hard disks, the journaling file systems are becoming increasingly +popular. Here we will create an ext2 file system, but build +instructions for other file systems can be found at <ulink +url="&blfs-root;view/svn/postlfs/filesystems.html"/>.</para> + +<para>To create an ext2 file system on the LFS partition, run the following:</para> + +<screen><userinput>mke2fs /dev/<replaceable>[xxx]</replaceable></userinput></screen> + +<para>Replace <replaceable>[xxx]</replaceable> with the name of the LFS +partition (<filename class="devicefile">hda5</filename> in our previous example).</para> + +<para>If a swap partition was created, it will need to be initialized +as a swap partition too (also known as formatting, as described above +with <command>mke2fs</command>) by running the following. If you are using an existing +swap partition, there is no need to format it.</para> + +<screen><userinput>mkswap /dev/<replaceable>[yyy]</replaceable></userinput></screen> + +<para>Replace <replaceable>[yyy]</replaceable> with the name of the swap +partition.</para> </sect1> + |