i really want to know the essential differences between those filesystems, for example the inodes pointer Structure and so on!

Thank you

link|improve this question

This is really a broad question, you can read this up on wikipedia. – OndÅ™ej Mirtes Jun 26 '11 at 21:02
feedback

closed as off topic by skaffman, Sabeen Malik, Paul R, ChrisWue, Brad Larson Jun 26 '11 at 21:20

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.

1 Answer

up vote 0 down vote accepted
  1. Ext2 is the first version of the filesystem created in 1993. It is stable and secure and can support volumes up to 4 TB. It doesn't have any form of journaling. It can be used for partitions that doesn't require journaling functions like boot partitions.

  2. Ext3 is more secure and consistent compared to ext2. It has a journaling function that doesn't require a lot of disks access. It is quite slomw compared to ext4. It can be used with file with high-variable dimension and server-files.

  3. Ext4 have high performances compared to its predecessors. It uses RAM to optimize read/write operations limiting access time. It is suggested for desktop use but not so recommended for servers (considering its young age).

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.