NTFSパーティションを2回マウントする

NTFSパーティションを2回マウントする

Debian の 2 つの異なるマウントポイントに 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を2回マウントできないのですか?

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

私が理解している限り、ntfsはそのような機能を提供しないので、以下を使用して同じ効果を得ることができるので、必要はありません。

mount --bind 

ありがとう

ベストアンサー1

おすすめ記事