OverlayFS
Developer(s) | Miklos Szeredi, Open Source Community |
---|---|
Full name | Overlay File System |
Features | |
File system permissions | POSIX |
Other | |
Supported operating systems | Linux, FreeBSD and NetBSD |
In computing, OverlayFS is a union mount filesystem implementation for Linux. It combines multiple different underlying mount points into one, resulting in single directory structure that contains underlying files and sub-directories from all sources. Common applications overlay a read/write partition over a read-only partition, such as with LiveCDs and IoT devices with limited flash memory write cycles.
History
The need and specification of a kernel mode Linux union mount filesystem was identified in late 2009.[1] The initial RFC patchset of OverlayFS was submitted by Miklos Szeredi in 2010.[2] By 2011, OpenWrt had already adopted it for their use.[3]
It was merged into the Linux kernel mainline in 2014, in kernel version 3.18.[4][5] It was improved in version 4.0, bringing improvements necessary for e.g. the overlay2 storage driver in Docker.[6]
While most Live CD linux distributions used Aufs as of November 2016, Slackware used overlayfs for its live CD.[7]
Implementation
The main mechanics of OverlayFS relate to the merging of directory access when both filesystems present a directory for the same name. Otherwise, OverlayFS presents the object, if any, yielded by one or the other, with the "upper" filesystem taking precedence. Unlike some other overlay filesystems, the directory subtrees being merged by OverlayFS do not necessarily have to be from distinct filesystems.[8]
OverlayFS supports whiteouts and opaque directories in the upper filesystem to allow file and directory deletion.[8]
OverlayFS does not support renaming files without performing a full copy-up of the file; however, renaming directories in an upper filesystem has limited support.
OverlayFS does not support merging changes from an upper filesystem to a lower filesystem.
See also
References
- ↑ Aurora, Valerie (March 18, 2009). "Unioning file systems: Architecture, features, and design choices". https://lwn.net/Articles/324291/.
- ↑ Edge, Jake (September 1, 2010). "Another union filesystem approach". https://lwn.net/Articles/403012/.
- ↑ Corbet, Jonathan (June 15, 2011). "Debating overlayfs". https://lwn.net/Articles/447650/.
- ↑ "OverlayFS commit to Linux". https://github.com/torvalds/linux/commit/e9be9d5e76e34872f0c37d72e25bc27fe9e2c54c.
- ↑ "OverlayFS Proposed For The Linux 3.18 Kernel". https://www.phoronix.com/scan.php?page=news_item&px=MTc5OTc.
- ↑ "Select a storage driver - Docker". archive.is. 2016-12-06. https://docs.docker.com/engine/userguide/storagedriver/selectadriver/.
- ↑ "slackware:liveslak - SlackDocs" (in en). http://docs.slackware.com/slackware:liveslak.
- ↑ 8.0 8.1 "OverlayFS documentation". kernel.org. https://www.kernel.org/doc/html/latest/filesystems/overlayfs.html?highlight=overlayfs.
External links
Original source: https://en.wikipedia.org/wiki/OverlayFS.
Read more |