What are the merits of ext3 over ext4

ext3ext4storage

Specifically want to use the storage for music/video files but with a smattering of usual doc/xls/etc) – wondering if there is a concrete reason to go for one over the other.

Thanks

Best Answer

Ext3 has been around since 2001 and is a logical extension of Ext2. Ext3 is regarded as being very reliable, and is available on virtually every Linux distribution. It's main feature is the ability to journal writes to the filesystem, allowing much faster crash recovery times, as there is no requirement to fsck the filesystem before mounting it.

Ext4 is a recent revision of Ext3, which adds the ability to store large (multi megabyte, ideally gigabyte) files more efficiently using an extend based layout. The expected benefit from using Ext4 over Ext3 would be a lower accounting overhead (less blocks on disk dedicated to filesystem metadata) and an increased throughput in sequential IO as extent based filesystems tend to group data physically together, reducing internal fragmentation.

Related Topic