I have a FAT32 filesystem mounted. After changing a file on it, I can read the file back and still see the old version. My changes don't actually persist until I unmount and remount the partition. Is this behavior normal? If yes, why does it make sense or why is it needed? Is there a way to set it up so changes appear automatically?
|
The linux, just like most other operating systems, do cache the disk IO operations. You could force the kernel to flush its buffers with |
|||||||||||
|
|
You might be able to find the old version of the same file even after unmounting it, as a filesystem does not necessarily have to store the new file in the same place. So a new file does not necessarily overwrite the old one, if it's stored in another free location. Changes you make in a filesystem are not immediately written to disk due to performance reasons. Why make programs wait until a file has actually been physically written out completely, when you can just as well have the OS do it in the background? Sometimes this asynchronous behaviour can even save writes altogether, such as when a file is deleted or overwritten immediately after creation, it never needed to be physically stored in the first place. You can disable that behaviour for most filesystems using the You should never access a filesystems raw data though. If you have /dev/sdb1 mounted and then use another machine to mount the very same filesystem (over a network block device or whatever), so two systems work with the same filesystem data at the same time, you'll end up with corruption. Only special (cluster) filesystems work that way; for all others you need a network filesystem (where only one machine mounts the disk, and exposes its files transparently over the network). |
|||||
|