데비안의 두 개의 다른 마운트 지점에 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
감사해요