AUFS
AUFS, short for Another Union File System, is a stackable Linux filesystem that allows combining several directories or filesystems into a single coherent view. It presents a unified namespace by layering read-only lower branches beneath a writable top branch. Applications can mount multiple directories as branches (layers) and access them as one.
AUFS supports an arbitrary number of branches, and when a file is modified, it is copied into
In practice, AUFS has been widely used as a storage driver in container platforms (notably Docker) and
Status: AUFS is implemented as a kernel patch and is not part of the mainline Linux kernel.