aboutsummaryrefslogtreecommitdiffstats
path: root/chapter02/creatingfilesystem.xml
blob: 0e0ef6627c82d1e7adb4c882abb8002b66983809 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN" "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
  <!ENTITY % general-entities SYSTEM "../general.ent">
  %general-entities;
]>
<sect1 id="space-creatingfilesystem">
<title>Creating a File System on the Partition</title>
<?dbhtml filename="creatingfilesystem.html"?>

<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>