← Back to post

Edit history

Most recent

ext4 is merely journaled, which means that there are rare instances where it can be corrupted, but recovery is fast.

None of these things mean that the filesystem becomes corrupted; the filesystem will be in a filesystem consistent state when remounted. You can have a write that is partially performed on a file, but that does not cause the filesystem to become corrupt when it does not complete being written. The journal can contain that write, but it can not yet be committed, and won’t yet be visible to a user. But that doesn’t make the filesystem corrupt; the commit itself is atomic.

Original

ext4 is merely journaled, which means that there are rare instances where it can be corrupted, but recovery is fast.

None of these things mean that the filesystem becomes corrupted; the filesystem will be in a filesystem consistent state when remounted. You can have a write that is partially performed on a file, but that does not cause the filesystem to become corrupt when it does not complete being written.