May 2013
Beginner to intermediate
384 pages
7h 40m
English
Loopback filesystems are very interesting components of Linux-like systems. We usually create filesystems on devices (for example, disk drive partitions). These storage devices are available as device files such as /dev/device_name. In order to use the storage device filesystem, we mount it at a directory called a mount point
. On the other hand, loopback filesystems are those that we create in files rather than a physical device. We can then mount those files as filesystems at a mount point. This essentially lets you create logical "disks" inside a file on your physical disk!
Let us see how to create an ext4 filesystem on a file of size 1 GB:
$ dd ...Read now
Unlock full access