how to create a loop in linux filesystem ? I want to break the directed acyclic graph(DAG) property of linux file system.. Is it possible?... I have seen this condition(loop in filesystem) once when I installed scratchbox cross compilier in my ubuntu linux distro... .. I dunno how to reproduce it now...
|
|
|||||||||||
|
|
|
Some other responders have already answered how to set up a mount using the loopback device, but you specifically asked about
This will make the filesystem location accessible at
Now suppose I make a
I will be able to access files like
One caveat about
Then I set up my Also, just in case you meant "How do I set up bind mounts using the mount(2) system call?": you must specify the Hope that helps, Eric Melski |
||
|
|
|
|
where /path/to/device is the path to either the partition you want to mount, or the path to a disk image, and /path/to/mount/location is the path to the folder you want to mount the device/image under you may also need to include the type of the file system like so (which uses fat16/fat32):
|
||
|
|
|
|
It looks like all the answers so far are about mounting on loopback devices, and not creating a loop using bind mounts. As you've probably discovered,
only allows you to access
works, because the recursive bind-mount effectively goes through finding existing mounts on the source and binding them in the target. What you've asked for isn't possible, since bind mounts don't cross mount points. If you really wish to simulate a filesystem loop, try use a pseudo-bind mount like localfs. I haven't tried myself, it may lock up when trying to read a filesystem provided by itself. Just now, I tried exporting a NFS tree with |
||
|
|
|
|
You may also want to create one from scratch: First create the image file and initialize it
Next, make it a valid partition using an FS type of your choice
Mount your new image
You can now create/copy files and directories in your new image. Have fun, Jeach! |
||
|
|
