Lest say I mount a usb drive to /mnt and next I run this...
mount --bind /mnt /tmp/test.d
It's a successful bind, but now when I run lsblk
only the bind point shows.
How can I get all bound and original mount points listed?
When I use findmnt
, it shows both, but it doesn't tell me which one is the original mount point. How can I learn this?
findmnt -R /path/to/mount/point/dir
will make it very clear w/ defaulys. – mikeserv Mar 21 '15 at 17:08mount --bind
, the two copies are equivalent, there isn't one that's more “original” than the other. After all there could be no original if you'd already unmounted/mnt
. – Gilles 'SO- stop being evil' Mar 21 '15 at 18:49