Unioning file systems: Architecture, features, and design choices
Unioning file systems: Architecture, features, and design choices
Posted Jan 15, 2013 22:22 UTC (Tue) by hummassa (subscriber, #307)In reply to: Unioning file systems: Architecture, features, and design choices by anselm
Parent article: Unioning file systems: Architecture, features, and design choices
What you really want to do is to union mount /etc, /usr/share and other places where you want to have writable configuration or data files shadowing read-only (original) files.
In that case, the semantics you Need from -- for instance -- "rm /etc/resolv.conf" is exactly "substitute /etc/resolv.conf for the default file".
Posted Jan 15, 2013 22:31 UTC (Tue)
by anselm (subscriber, #2796)
[Link] (1 responses)
That's not the greatest example – not having an /etc/resolv.conf file at all also means something, and with the »path in symlink« approach you can't make a file that is present in a lower layer appear as if it wasn't there after all, which is something that union filesystems can usually handle.
Posted Jan 16, 2013 0:00 UTC (Wed)
by hummassa (subscriber, #307)
[Link]
Unioning file systems: Architecture, features, and design choices
In that case, the semantics you Need from -- for instance -- "rm /etc/resolv.conf" is exactly "substitute /etc/resolv.conf for the default file".
Unioning file systems: Architecture, features, and design choices