Using loopback files
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!
How to do it...
Let us see how to create an ext4 filesystem on a file of size 1 GB:
- The following command will create a file that is 1 GB in size:
$ dd ...
Get Linux Shell Scripting Cookbook - Second Edition now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.