Why Mounting a Damaged File System Can Be Risky
Why mounting is not always a read-only observation, how automatic repair and journal replay can change state, and when an image or read-only workflow is safer.
A normal mount is designed for normal use
Operating systems generally assume that a mounted writable file system is going back into service. They may update state, replay pending transactions or make consistency-related changes that are reasonable for operation but undesirable when preserving a damaged state.
Read-only is safer, but details matter
A genuinely read-only path reduces the risk of modifying the source, but exact behavior depends on the file system, driver and platform. Recovery software that parses structures without mounting them provides another way to inspect data.
Journal replay can change what you are trying to recover
Journaled file systems use logs to restore consistency after interruption. Replaying those logs can be correct from the file system’s point of view while changing metadata that might have been useful for reconstructing an earlier state.
Unstable media adds a second risk
Even a read-only mount may cause broad, unpredictable reads. On a failing drive, a controlled image is usually a better first step because acquisition can be mapped and difficult regions handled deliberately.
If the data matters and the state is uncertain, image or otherwise preserve the source before allowing normal operating-system repair or writable mounting.
Related: Repair Vs Recovery · Imaging Vs Cloning · Filesystem Corruption