The Linux kernel supports various filesystems. We'll explain ext2, ext3, ReiserFS, XFS and JFS as these are the most commonly used filesystems on Linux systems.
The Linux kernel supports various filesystems. We'll explain vfat, ext2, ext3, ReiserFS, XFS and JFS as these are the most commonly used filesystems on Linux systems.
Several filesystems are available. Some of them are found stable on the amd64 architecture, others aren't. The following filesystems are found to be stable: ext2, ext3 and XFS. JFS and ReiserFS may work but need more testing. If you're really adventurous you can try the other filesystems.
Several filesystems are available. Some of them are found stable on the arm architecture, others aren't. ext2 and ext3 are found to be stable. JFS, XFS and ReiserFS may work but need more testing. If you're really adventurous you can try the other filesystems.
Several filesystems are available. Ext2, ext3, XFS and reiserfs are found stable on the HPPA architecture. The others are very experimental.
Several filesystems are available. ReiserFS, EXT2 and EXT3 are found stable on the MIPS architectures, others are experimental.
Several filesystems are available for use on the PowerPC architecture including ext2, ext3, ReiserFS and XFS, each with their strengths and faults.
Several filesystems are available, some are known to be stable on the SPARC architecture. Ext2 and ext3, for example, are known to work well. Alternate filesystems may not function correctly.
vfat is the MS-DOS filesystem, updated to allow long filenames. It is also the only filesystem type that the EFI firmware on ia64 systems understands. The boot partition on ia64 systems should always be vfat, but for your data partitions you should use one of the other filesystems listed below.
ext2 is the tried and true Linux filesystem but doesn't have metadata
journaling, which means that routine ext2 filesystem checks at startup time can
be quite time-consuming. There is now quite a selection of newer-generation
journaled filesystems that can be checked for consistency very quickly and are
thus generally preferred over their non-journaled counterparts. Journaled
filesystems prevent long delays when you boot your system and your filesystem
happens to be in an inconsistent state. If you intend to install Gentoo on a
very small disk (less than 4GB), then you'll need to tell ext2 to reserve enough
inodes when you create the filesystem by running
ext3 is the journaled version of the ext2 filesystem, providing metadata
journaling for fast recovery in addition to other enhanced journaling modes like
full data and ordered data journaling. It uses an HTree index that enables high
performance in almost all situations. In short, ext3 is a very good and
reliable filesystem. Ext3 is the recommended all-purpose all-platform
filesystem. If you intend to install Gentoo on a very small disk (less than
4GB), then you'll need to tell ext3 to reserve enough inodes when you create the
filesystem by running
JFS is IBM's high-performance journaling filesystem. JFS is a light, fast and reliable B+tree-based filesystem with good performance in various conditions.
ReiserFS is a B+tree-based journaled filesystem that has good overall performance, especially when dealing with many tiny files at the cost of more CPU cycles. ReiserFS appears to be less maintained than other filesystems.
XFS is a filesystem with metadata journaling which comes with a robust feature-set and is optimized for scalability. XFS seems to be less forgiving to various hardware problems.