挂载ntfs分区两次

挂载ntfs分区两次

我想在 Debian 上的两个不同的挂载点上挂载一个 ntfs 分区。我已经对 vfat 或 ext4 等其他文件系统执行了此操作,但无法对 ntfs 执行此操作:

mkdir -p /tmp/mp_0 /tmp/mp_1
mount -t ntfs -umask=000 /dev/sda1 /tmp/mp_o --> everything is till now ok
mount -t ntfs -umask=000 /dev/sda1 /tmp/mp_1 --> ERROR
Mount is denied because the NTFS volume is already exclusively opened.
The volume may be already mounted, or another software may use it which
could be identified for example by the help of the 'fuser' command.

为什么我不能两次挂载ntfs?

*********** 更新 **********

据我了解,ntfs不提供这样的功能,因此甚至不需要它,因为我可以使用以下命令达到相同的效果

mount --bind 

谢谢

相关内容