Move to ext3, resolves #1792.

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@7590 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
This commit is contained in:
Ken Moffat 2006-05-07 12:42:05 +00:00
parent 9357812b46
commit a92b3e7bdc
5 changed files with 27 additions and 7 deletions

View File

@ -169,6 +169,13 @@
</listitem> </listitem>
</varlistentry> </varlistentry>
<varlistentry>
<term><emphasis role="bold">ext3</emphasis></term>
<listitem>
<para>third extended file system</para>
</listitem>
</varlistentry>
<varlistentry> <varlistentry>
<term><emphasis role="bold">FAQ</emphasis></term> <term><emphasis role="bold">FAQ</emphasis></term>
<listitem> <listitem>

View File

@ -36,6 +36,16 @@
</listitem> </listitem>
--> -->
<listitem>
<para>May 7, 2006</para>
<itemizedlist>
<listitem>
<para>[ken] - Use ext3 filesystem instead of ext2.
Resolves ticket #1792.</para>
</listitem>
</itemizedlist>
</listitem>
<listitem> <listitem>
<para>May 6, 2006</para> <para>May 6, 2006</para>
<itemizedlist> <itemizedlist>

View File

@ -14,14 +14,17 @@
The most widely-used system in the Linux world is the second extended file The most widely-used system in the Linux world is the second extended file
system (<systemitem class="filesystem">ext2</systemitem>), but with newer system (<systemitem class="filesystem">ext2</systemitem>), but with newer
high-capacity hard disks, journaling file systems are becoming increasingly high-capacity hard disks, journaling file systems are becoming increasingly
popular. We will create an <systemitem class="filesystem">ext2</systemitem> popular. The third extended filesystem (<systemitem class="filesystem">ext3
</systemitem>) is a widely-used development of <systemitem class="filesystem">
ext2</systemitem> which adds a journal and is compatible with the E2fsprogs
utilities. We will create an <systemitem class="filesystem"> ext3</systemitem>
file system. Build instructions for other file systems can be found at file system. Build instructions for other file systems can be found at
<ulink url="&blfs-root;view/svn/postlfs/filesystems.html"/>.</para> <ulink url="&blfs-root;view/svn/postlfs/filesystems.html"/>.</para>
<para>To create an <systemitem class="filesystem">ext2</systemitem> file <para>To create an <systemitem class="filesystem">ext3</systemitem> file
system on the LFS partition, run the following:</para> system on the LFS partition, run the following:</para>
<screen role="nodump"><userinput>mke2fs -v /dev/<replaceable>&lt;xxx&gt;</replaceable></userinput></screen> <screen role="nodump"><userinput>mke2fs -jv /dev/<replaceable>&lt;xxx&gt;</replaceable></userinput></screen>
<para>Replace <replaceable>&lt;xxx&gt;</replaceable> with the name of the LFS <para>Replace <replaceable>&lt;xxx&gt;</replaceable> with the name of the LFS
partition (<filename class="devicefile">hda5</filename> in our previous partition (<filename class="devicefile">hda5</filename> in our previous
@ -51,7 +54,7 @@ mkdir -v build
cd build cd build
../configure ../configure
make #note that we intentionally don't 'make install' here! make #note that we intentionally don't 'make install' here!
./misc/mke2fs -v /dev/<replaceable>&lt;xxx&gt;</replaceable> ./misc/mke2fs -jv /dev/<replaceable>&lt;xxx&gt;</replaceable>
cd /tmp cd /tmp
rm -rfv e2fsprogs-&e2fsprogs-version;</userinput></screen> rm -rfv e2fsprogs-&e2fsprogs-version;</userinput></screen>
</note> </note>

View File

@ -39,7 +39,7 @@ EOF</userinput></screen>
with the values appropriate for the system, for example, <filename with the values appropriate for the system, for example, <filename
class="partition">hda2</filename>, <filename class="partition">hda2</filename>, <filename
class="partition">hda5</filename>, and <systemitem class="partition">hda5</filename>, and <systemitem
class="filesystem">ext2</systemitem>. For details on the six class="filesystem">ext3</systemitem>. For details on the six
fields in this file, see <command>man 5 fstab</command>.</para> fields in this file, see <command>man 5 fstab</command>.</para>
<para>The <filename class="directory">/dev/shm</filename> mount point <para>The <filename class="directory">/dev/shm</filename> mount point

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="ISO-8859-1"?> <?xml version="1.0" encoding="ISO-8859-1"?>
<!ENTITY version "SVN-20060506"> <!ENTITY version "SVN-20060507">
<!ENTITY releasedate "May 6, 2006"> <!ENTITY releasedate "May 7, 2006">
<!ENTITY milestone "6.2"> <!ENTITY milestone "6.2">
<!ENTITY generic-version "development"> <!-- Use "development", "testing", or "x.y[-pre{x}]" --> <!ENTITY generic-version "development"> <!-- Use "development", "testing", or "x.y[-pre{x}]" -->