Journaling filesystem

Journaling filesystem is a filesystem where all the changes to its content first written to a log file, and this write is made then actual change is made. It enhances data integrity and recovery of the content of the filesystem.

It slows down operation, but it adds integrity to them.

Most commonly known filesystem that support journaling is ext3 filesystem. ext3 is essentially ext2 filesystem with added journal.

Comments

Popular posts from this blog

Absolute and relative path in HTML pages

Errors

goto PHP operator