Gentoo Archives: gentoo-doc-cvs

From: "Joshua Saddler (nightmorph)" <nightmorph@g.o>
To: gentoo-doc-cvs@l.g.o
Subject: [gentoo-doc-cvs] gentoo commit in xml/htdocs/doc/en/handbook: hb-install-filesystems.xml
Date: Sun, 14 Jun 2009 10:16:27
Message-Id: E1MFmlF-00025o-1t@stork.gentoo.org
1 nightmorph 09/06/14 10:16:25
2
3 Modified: hb-install-filesystems.xml
4 Log:
5 ext2/3 filesystems on disks under 4GB in size need to use the -T small option at creation time, otherwise the system runs out of inodes. added the info to the shared filesystems.xml doc so that all the handbooks pick up the note. bug 269035
6
7 Revision Changes Path
8 1.6 xml/htdocs/doc/en/handbook/hb-install-filesystems.xml
9
10 file : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/handbook/hb-install-filesystems.xml?rev=1.6&view=markup
11 plain: http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/handbook/hb-install-filesystems.xml?rev=1.6&content-type=text/plain
12 diff : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/handbook/hb-install-filesystems.xml?r1=1.5&r2=1.6
13
14 Index: hb-install-filesystems.xml
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-filesystems.xml,v
17 retrieving revision 1.5
18 retrieving revision 1.6
19 diff -u -r1.5 -r1.6
20 --- hb-install-filesystems.xml 1 Apr 2008 08:53:46 -0000 1.5
21 +++ hb-install-filesystems.xml 14 Jun 2009 10:16:24 -0000 1.6
22 @@ -1,11 +1,11 @@
23 <?xml version='1.0' encoding="UTF-8"?>
24 -<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-filesystems.xml,v 1.5 2008/04/01 08:53:46 nightmorph Exp $ -->
25 +<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-filesystems.xml,v 1.6 2009/06/14 10:16:24 nightmorph Exp $ -->
26 <!DOCTYPE included SYSTEM "/dtd/guide.dtd">
27
28 <included>
29
30 -<version>3</version>
31 -<date>2008-03-03</date>
32 +<version>4</version>
33 +<date>2009-06-14</date>
34
35 <section id="filesystemsdesc">
36 <title>Filesystems</title>
37 @@ -86,15 +86,21 @@
38 journaled filesystems that can be checked for consistency very quickly and are
39 thus generally preferred over their non-journaled counterparts. Journaled
40 filesystems prevent long delays when you boot your system and your filesystem
41 -happens to be in an inconsistent state.
42 +happens to be in an inconsistent state. If you intend to install Gentoo on a
43 +very small disk (less than 4GB), then you'll need to tell ext2 to reserve enough
44 +inodes when you create the filesystem by running <c>mke2fs -T small
45 +/dev/&lt;device&gt;</c>.
46 </p>
47
48 <p>
49 <b>ext3</b> is the journaled version of the ext2 filesystem, providing metadata
50 journaling for fast recovery in addition to other enhanced journaling modes like
51 full data and ordered data journaling. It uses an HTree index that enables high
52 -performance in almost all situations. In short, ext3 is a very good and reliable
53 -filesystem. Ext3 is the recommended all-purpose all-platform filesystem.
54 +performance in almost all situations. In short, ext3 is a very good and
55 +reliable filesystem. Ext3 is the recommended all-purpose all-platform
56 +filesystem. If you intend to install Gentoo on a very small disk (less than
57 +4GB), then you'll need to tell ext3 to reserve enough inodes when you create the
58 +filesystem by running <c>mke2fs -j -T small /dev/&lt;device&gt;</c>.
59 </p>
60
61 </body>