devmapper
Devmapper, short for device-mapper, refers to the Linux kernel Device Mapper framework and its accompanying user-space tools used to manage virtual block devices. The framework provides a generic mechanism to map one or more underlying physical block devices to a single virtual device, enabling features such as logical volumes, snapshots, mirrors, and thin-provisioned pools. It is implemented in the kernel as the device-mapper subsystem and in userland by tools such as dmsetup and the libdevmapper library.
How it works: A user-space process issues commands to the device-mapper control device, typically /dev/mapper/control, to
Usage: The device-mapper framework is the foundation of LVM (logical volume manager) and is used by other
Notes: The project comprises the kernel device-mapper subsystem and userland utilities; performance and reliability depend on
---