Specifically: I did sudo mkdir /work, and would like to verify it indeed sits on my harddrive and not mapped to some other drive.
How do I check where this folder is physically located?
|
Specifically: I did How do I check where this folder is physically located? |
|||
|
|
|
The
The first field has the device that the file or directory is on. e.g.
If the device is a logical volume, you will need to determine which block device(s) the logical volume is on. For this, you can use the
The last column tells you that the logical volume Another type of logical block device is a md (Multiple Devices, and used to be called meta-disk I think) device, such as
You can see that There are other methods that block devices can be nested (fuse, loopback filesystems) that will have their own methods for determining the underlying block device, and you can even nest multiple layers so you have to work your way down. You'll have to take each case as it comes. |
||||