|
Edited by VinzC at 2015-7-23 20:50
No, it won't suffice. The real issue is that partitions are mounted read/write, which allows the system to write data on the SD card. It has destructive consequences if the power is removed while the system is writing something to the SD card. Linux allows strict read-only mounts, i.e. data on partitions will only be read. So when the power is removed, there's no risk to interrupt write operations because the card is logically never accessed in write mode.
Even if you set all files to read-only, there are still write operations to the SD card that are made by the system. For instance, the mount date, the mount state and various access date/time attribute updates when reading files. So it's not enough to set a read-only status to files.
There's a little more explanations on Stackexchange for the Raspberry PI and Linux.
|
|